mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
9 lines
171 B
Python
9 lines
171 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AllianceAuthConfig(AppConfig):
|
|
name = 'allianceauth'
|
|
|
|
def ready(self) -> None:
|
|
import allianceauth.checks # noqa
|