This commit is contained in:
sujit
2025-09-18 18:26:35 +05:45
parent 1b3ebcc325
commit 33857e32d1
55 changed files with 757 additions and 896 deletions

View File

@@ -191,9 +191,9 @@ func (api *WorkflowAPI) ExecuteWorkflow(c *fiber.Ctx) error {
})
}
var input map[string]interface{}
var input map[string]any
if err := c.BodyParser(&input); err != nil {
input = make(map[string]interface{})
input = make(map[string]any)
}
execution, err := api.enhancedDAG.ExecuteWorkflow(c.Context(), id, input)