summaryrefslogtreecommitdiff
path: root/examples/simple_task_queue/tasks.py
blob: 02edda074be43a151104b65a1cebd61aeafb7f4c (plain)
1
2
3
4
5
from __future__ import annotations


def hello_task(who='world'):
    print(f'Hello {who}')