mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-08 20:10:17 +02: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')
|