mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
9 lines
247 B
Python
9 lines
247 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class OpenfireServiceConfig(AppConfig):
|
|
name = 'allianceauth.services.modules.openfire'
|
|
label = 'openfire'
|
|
verbose_name = _('Openfire Service')
|