mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-10 00:56:19 +01:00
9 lines
227 B
Python
9 lines
227 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class CorpUtilsConfig(AppConfig):
|
|
name = 'allianceauth.corputils'
|
|
label = 'corputils'
|
|
verbose_name = _('Corporation Stats')
|