mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-21 18:22:27 +02:00
9 lines
229 B
Python
9 lines
229 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class TimerBoardConfig(AppConfig):
|
|
name = 'allianceauth.timerboard'
|
|
label = 'timerboard'
|
|
verbose_name = _('Structure Timers')
|