This commit is contained in:
2026-03-12 14:55:11 +01:00
parent 4f5c7643d0
commit 9e7e894177
2 changed files with 14 additions and 6 deletions
+5 -2
View File
@@ -1,2 +1,5 @@
def run():
return "Script1 executed"
def run(data):
name = data.get("name")
action = data.get("action")
return f"{name} requested {action}"