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