1
0
Fork 0
bookwyrm/celerywyrm/apps.py

11 lines
207 B
Python
Raw Normal View History

2022-02-04 18:34:17 -08:00
from django.apps import AppConfig
from celerywyrm import settings
class CelerywyrmConfig(AppConfig):
name = "celerywyrm"
verbose_name = "BookWyrm Celery"
def ready(self) -> None:
pass