apps.py 353 B

12345678910111213
  1. from django.apps import AppConfig
  2. class GalleryDLAppConfig(AppConfig):
  3. label = "Gallery-DL"
  4. name = "plugin_gallerydl"
  5. default_auto_field = "django.db.models.BigAutoField"
  6. def ready(self):
  7. # querying models is ok, but don't fetch rows from DB or perform stateful actions here
  8. print('√ Loaded GalleryDL Plugin')