mirror of
https://github.com/jazzband/django-celery-monitor.git
synced 2026-03-16 22:00:24 +00:00
15 lines
427 B
Python
15 lines
427 B
Python
"""Application configuration."""
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
__all__ = ['CeleryMonitorConfig']
|
|
|
|
|
|
class CeleryMonitorConfig(AppConfig):
|
|
"""Default configuration for the django_celery_monitor app."""
|
|
|
|
name = 'django_celery_monitor'
|
|
label = 'celery_monitor'
|
|
verbose_name = _('Celery Monitor')
|