mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-16 16:00:17 +02:00
12 lines
250 B
Python
12 lines
250 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class ServicesConfig(AppConfig):
|
|
name = 'allianceauth.services'
|
|
label = 'services'
|
|
verbose_name = _('Services')
|
|
|
|
def ready(self):
|
|
pass
|