forked from CGM_Public/pretix_original
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'
|