mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-12-28 17:18:19 -05:00
12 lines
256 B
Python
12 lines
256 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'users'
|
|
|
|
def ready(self):
|
|
# Ensure signal handlers are registered
|
|
import users.signals # noqa: F401
|
|
|