mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-13 04:56:36 +03:00
14 lines
311 B
Python
14 lines
311 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "users"
|
|
verbose_name = _("Users")
|
|
|
|
def ready(self):
|
|
try:
|
|
import image_markuper.users.signals # noqa F401
|
|
except ImportError:
|
|
pass
|