mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
9 lines
195 B
Python
9 lines
195 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'Common'
|
|
|
|
def ready(self):
|
|
import Common.signals |