mirror of
https://github.com/deunix-educ/Fail2banMqttActionBanishment.git
synced 2026-08-24 03:11:58 +02:00
10 lines
224 B
Python
10 lines
224 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class BaneventsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'banevents'
|
|
|
|
def ready(self) -> None:
|
|
from . import signals # noqa: F401
|