16 lines
364 B
Python
16 lines
364 B
Python
"""
|
|
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
|