first commit

This commit is contained in:
MoonDev
2025-05-21 07:55:46 +03:00
commit 96ea504b10
28 changed files with 919 additions and 0 deletions

5
callbacks/example.py Normal file
View File

@@ -0,0 +1,5 @@
async def example_action(args):
return {"message": "Example action executed", "args": args}
def another_action(args):
return {"message": "Another action executed synchronously", "args": args}