mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
11 lines
252 B
Python
11 lines
252 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class GroupManagementConfig(AppConfig):
|
|
name = 'allianceauth.groupmanagement'
|
|
label = 'groupmanagement'
|
|
verbose_name = 'Group Management'
|
|
|
|
def ready(self):
|
|
from . import signals # noqa: F401
|