mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 14:44:29 -04:00
12 lines
381 B
Python
12 lines
381 B
Python
__package__ = 'archivebox.plugantic'
|
|
|
|
from django.apps import AppConfig
|
|
|
|
class PluganticConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'plugantic'
|
|
|
|
def ready(self) -> None:
|
|
pass
|
|
# from django.conf import settings
|
|
# print(f'[🧩] Detected {len(settings.INSTALLED_PLUGINS)} settings.INSTALLED_PLUGINS to load...')
|