1
0
Fork 0
bookwyrm/celerywyrm/apps.py

10 lines
207 B
Python

from django.apps import AppConfig
from celerywyrm import settings
class CelerywyrmConfig(AppConfig):
name = "celerywyrm"
verbose_name = "BookWyrm Celery"
def ready(self) -> None:
pass