mirror of
https://github.com/evraz-hack/backend.git
synced 2024-11-10 19:36:38 +03:00
14 lines
336 B
Python
14 lines
336 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "exhauster_analytics.users"
|
|
verbose_name = _("Users")
|
|
|
|
def ready(self):
|
|
try:
|
|
import exhauster_analytics.users.signals # noqa F401
|
|
except ImportError:
|
|
pass
|