mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
9 lines
174 B
Python
9 lines
174 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PretixBaseConfig(AppConfig):
|
|
name = 'pretix.base'
|
|
label = 'pretixbase'
|
|
|
|
default_app_config = 'pretix.base.PretixBaseConfig'
|