Files
allianceauth/allianceauth/services/modules/example/apps.py
2025-04-10 07:08:16 +02:00

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')