11 lines
295 B
Python
11 lines
295 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class YksaKitConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "yksa_kit"
|
|
label = "yksa_kit"
|
|
verbose_name = "YKSA kit"
|
|
|
|
def ready(self):
|
|
from . import checks # noqa: F401 (registers the system check)
|