mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-20 17:52:30 +02:00
9 lines
251 B
Python
9 lines
251 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class ExampleServiceConfig(AppConfig):
|
|
name = 'allianceauth.services.modules.example'
|
|
label = 'example_service'
|
|
verbose_name = _('Example Service')
|