10 lines
207 B
Python
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
|