mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
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'
|