mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
10 lines
222 B
Python
10 lines
222 B
Python
from core.celery_app import celery_app
|
|
|
|
# from raven import Client
|
|
|
|
# client_sentry = Client(settings.SENTRY_DSN)
|
|
|
|
|
|
@celery_app.task(acks_late=True)
|
|
def test_celery(word: str) -> str:
|
|
return f"test task return {word}"
|