plugin distribution system
This commit is contained in:
15
backend/igny8_core/plugins/apps.py
Normal file
15
backend/igny8_core/plugins/apps.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
Plugin Distribution System App Configuration
|
||||
"""
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class PluginsConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'igny8_core.plugins'
|
||||
label = 'plugins'
|
||||
verbose_name = 'Plugin Distribution'
|
||||
|
||||
def ready(self):
|
||||
"""Import signal handlers when app is ready."""
|
||||
pass
|
||||
Reference in New Issue
Block a user