10 lines
210 B
Python
10 lines
210 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class MatrixhostingConfig(AppConfig):
|
||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||
|
name = 'matrixhosting'
|
||
|
|
||
|
def ready(self):
|
||
|
from . import signals
|