kombu/examples/simple_task_queue/tasks.py

6 lines
92 B
Python

from __future__ import annotations
def hello_task(who='world'):
print(f'Hello {who}')