16 lines
301 B
Python
16 lines
301 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PluginConfig(AppConfig):
|
|
name = 'byro_shackspace'
|
|
|
|
class ByroPluginMeta:
|
|
name = 'shackspace'
|
|
|
|
def ready(self):
|
|
from . import utils # noqa
|
|
from . import signals # noqa
|
|
|
|
|
|
default_app_config = 'byro_shackspace.PluginConfig'
|