mirror of https://github.com/celery/kombu.git
5 lines
63 B
Python
5 lines
63 B
Python
|
def hello_task(who="world"):
|
||
|
print("Hello %s" % (who, ))
|
||
|
|
||
|
|