2017-10-13 17:09:20 +02:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
2018-01-24 17:21:38 +01:00
|
|
|
class PluginConfig(AppConfig):
|
2018-01-13 12:55:43 +01:00
|
|
|
name = 'byro_shackspace'
|
|
|
|
|
2018-01-24 17:21:38 +01:00
|
|
|
class ByroPluginMeta:
|
2018-01-13 12:55:43 +01:00
|
|
|
name = 'shackspace'
|
|
|
|
|
|
|
|
def ready(self):
|
2018-01-13 13:05:49 +01:00
|
|
|
from . import utils # noqa
|
2018-01-13 12:55:43 +01:00
|
|
|
|
|
|
|
|
2018-01-24 17:21:38 +01:00
|
|
|
default_app_config = 'byro_shackspace.PluginConfig'
|