8 lines
No EOL
199 B
Python
8 lines
No EOL
199 B
Python
from django.apps import AppConfig
|
|
|
|
class UserAppConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'user_app'
|
|
|
|
def ready(self):
|
|
import user_app.signals |