mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-05 06:36:19 +01:00
9 lines
220 B
Python
9 lines
220 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class OptimerConfig(AppConfig):
|
|
name = 'allianceauth.optimer'
|
|
label = 'optimer'
|
|
verbose_name = _('Fleet Operations')
|