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