mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-24 02:33:44 +03:00
14 lines
318 B
Python
14 lines
318 B
Python
|
from django.apps import AppConfig
|
||
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
||
|
|
||
|
class UsersConfig(AppConfig):
|
||
|
name = "passfinder.users"
|
||
|
verbose_name = _("Users")
|
||
|
|
||
|
def ready(self):
|
||
|
try:
|
||
|
import passfinder.users.signals # noqa F401
|
||
|
except ImportError:
|
||
|
pass
|