mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-04 06:06:19 +01:00
9 lines
231 B
Python
9 lines
231 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class Ips4ServiceConfig(AppConfig):
|
|
name = 'allianceauth.services.modules.ips4'
|
|
label = 'ips4'
|
|
verbose_name = _('IPS4 Service')
|