forked from CGM_Public/pretix_original
10 lines
190 B
Python
10 lines
190 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PretixHelpersConfig(AppConfig):
|
|
name = 'pretix.helpers'
|
|
label = 'pretixhelpers'
|
|
|
|
|
|
default_app_config = 'pretix.helpers.PretixHelpersConfig'
|