forked from CGM_Public/pretix_original
12 lines
223 B
Python
12 lines
223 B
Python
from django.apps import AppConfig
|
|
|
|
from .database import * # noqa
|
|
|
|
|
|
class PretixHelpersConfig(AppConfig):
|
|
name = 'pretix.helpers'
|
|
label = 'pretixhelpers'
|
|
|
|
|
|
default_app_config = 'pretix.helpers.PretixHelpersConfig'
|