mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
13 lines
298 B
Python
13 lines
298 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PretixControlConfig(AppConfig):
|
|
name = 'pretix.control'
|
|
label = 'pretixcontrol'
|
|
|
|
def ready(self):
|
|
from .views import dashboards # noqa
|
|
from . import logdisplay # noqa
|
|
|
|
default_app_config = 'pretix.control.PretixControlConfig'
|