mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
6 lines
156 B
Python
6 lines
156 B
Python
from felicity.core.celery_app import celery_app
|
|
|
|
|
|
@celery_app.task(acks_late=True)
|
|
def test_celery(word: str) -> str:
|
|
return f"test task return {word}"
|