1
0
Fork 0
mirror of synced 2024-06-14 08:25:21 +12:00
ArchiveBox/archivebox/plugins/gallerydl/apps.py
2024-02-08 05:55:02 -08:00

14 lines
353 B
Python

from django.apps import AppConfig
class GalleryDLAppConfig(AppConfig):
label = "Gallery-DL"
name = "plugin_gallerydl"
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')