mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-08-24 19:01:42 +02:00
17 lines
291 B
Python
17 lines
291 B
Python
"""
|
|
Framework App Config
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class FrameworkConfig(AppConfig):
|
|
"""
|
|
Framework App Config
|
|
"""
|
|
|
|
name = "allianceauth.framework"
|
|
label = "framework"
|
|
verbose_name = _("Framework")
|