1
0
Fork 0
mirror of synced 2024-09-12 15:38:48 +12:00
ArchiveBox/archivebox/plugins/gallerydl/apps.py

14 lines
353 B
Python
Raw Normal View History

2024-01-20 03:45:33 +13:00
from django.apps import AppConfig
2024-02-09 02:55:02 +13:00
class GalleryDLAppConfig(AppConfig):
label = "Gallery-DL"
name = "plugin_gallerydl"
2024-01-20 03:45:33 +13:00
2024-02-09 02:55:02 +13:00
default_auto_field = "django.db.models.BigAutoField"
def ready(self):
# querying models is ok, but don't fetch rows from DB or perform stateful actions here
print('√ Loaded GalleryDL Plugin')