generated from bisco/codex-bootstrap
10 lines
222 B
Python
10 lines
222 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ScoutingConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "scouting"
|
|
|
|
def ready(self) -> None:
|
|
from . import signals # noqa: F401
|