mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-08 16:16:18 +01:00
12 lines
286 B
Python
12 lines
286 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class EveAutogroupsConfig(AppConfig):
|
|
name = 'allianceauth.eveonline.autogroups'
|
|
label = 'eve_autogroups'
|
|
verbose_name = _('EVE Online Autogroups')
|
|
|
|
def ready(self):
|
|
pass
|