mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 21:10:17 +02:00
10 lines
179 B
Python
10 lines
179 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ServicesConfig(AppConfig):
|
|
name = 'allianceauth.services'
|
|
label = 'services'
|
|
|
|
def ready(self):
|
|
from . import signals
|