backend/app/users/apps.py

10 lines
193 B
Python
Raw Normal View History

2022-10-07 22:15:12 +03:00
from django.apps import AppConfig
class UsersConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "users"
def ready(self):
import users.signals