mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
9 lines
212 B
Python
9 lines
212 B
Python
from django.apps import AppConfig
|
|
|
|
class AuditConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.audit"
|
|
|
|
def ready(self):
|
|
from . import signals # noqa: F401
|