Files
fastapi_best_architecture/backend/app/task/celery_task/tasks.py
2024-11-16 17:13:29 +08:00

12 lines
242 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from anyio import sleep
from backend.app.task.celery import celery_app
@celery_app.task(name='task_demo_async')
async def task_demo_async() -> str:
await sleep(20)
return 'test async'