mirror of
https://github.com/BlackWallTeam/Backend.git
synced 2024-11-11 03:16:46 +03:00
14 lines
334 B
Python
14 lines
334 B
Python
|
from django.apps import AppConfig
|
||
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
||
|
|
||
|
class UsersConfig(AppConfig):
|
||
|
name = "real_estate_search.users"
|
||
|
verbose_name = _("Users")
|
||
|
|
||
|
def ready(self):
|
||
|
try:
|
||
|
import real_estate_search.users.signals # noqa F401
|
||
|
except ImportError:
|
||
|
pass
|