mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
10 lines
227 B
Python
10 lines
227 B
Python
from django.apps import AppConfig
|
|
from django.core.checks import Warning, Error, register
|
|
|
|
|
|
class AllianceAuthConfig(AppConfig):
|
|
name = 'allianceauth'
|
|
|
|
def ready(self) -> None:
|
|
import allianceauth.checks # noqa
|