1
0
Fork 0
mirror of synced 2024-09-18 02:07:42 +12:00
ArchiveBox/archivebox/plugins/system/apps.py
2024-01-24 02:15:02 -08:00

22 lines
557 B
Python

# __package__ = 'archivebox.plugins.system'
from django.apps import AppConfig
class SystemPluginAppConfig(AppConfig):
name = "plugins.system"
# label = "ArchiveBox System"
verbose_name = "Host System Configuration"
default_auto_field = "django.db.models.AutoField"
def ready(self):
print('plugins.system.apps.SystemPluginConfig.ready')
from django.conf import settings
from plugins.defaults.settings import register_plugin_settings
register_plugin_settings(settings, name=self.name)