Notfellchen/src/fellchensammlung/tasks.py

7 lines
188 B
Python
Raw Normal View History

2024-10-09 19:54:31 +00:00
from notfellchen.celery import app as celery_app
from .tools.admin import clean_locations
@celery_app.task(name="admin.clean_locations")
def task_clean_locations():
clean_locations()