mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-08 20:10:17 +02:00
9 lines
227 B
Python
9 lines
227 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class SmfServiceConfig(AppConfig):
|
|
name = 'allianceauth.services.modules.smf'
|
|
label = 'smf'
|
|
verbose_name = _('SMF Service')
|