mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -04:00
13 lines
353 B
Python
13 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')
|