mirror of
https://github.com/marking-hack/backend.git
synced 2025-10-18 17:34:18 +03:00
14 lines
322 B
Python
14 lines
322 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "marking_hack.users"
|
|
verbose_name = _("Users")
|
|
|
|
def ready(self):
|
|
try:
|
|
import marking_hack.users.signals # noqa F401
|
|
except ImportError:
|
|
pass
|