forked from CGM_Public/pretix_original
13 lines
248 B
Python
13 lines
248 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PretixPresaleConfig(AppConfig):
|
|
name = 'pretix.presale'
|
|
label = 'pretixpresale'
|
|
|
|
def ready(self):
|
|
from . import style # noqa
|
|
|
|
|
|
default_app_config = 'pretix.presale.PretixPresaleConfig'
|