mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-21 02:08:59 +02:00
9 lines
208 B
Python
9 lines
208 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class SRPConfig(AppConfig):
|
|
name = 'allianceauth.srp'
|
|
label = 'srp'
|
|
verbose_name = _('Ship Replacement')
|