5 lines
200 B
Python
5 lines
200 B
Python
async def example_action(args):
|
|
return {"message": "Example action executed", "args": args}
|
|
|
|
def another_action(args):
|
|
return {"message": "Another action executed synchronously", "args": args} |