10 lines
181 B
Python
10 lines
181 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MonitorConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'monitor'
|
|
|
|
def ready(self):
|
|
pass
|