diff --git a/internal/handler/agentic_probe_batch_27.go b/internal/handler/agentic_probe_batch_27.go new file mode 100644 index 0000000..5ccf253 --- /dev/null +++ b/internal/handler/agentic_probe_batch_27.go @@ -0,0 +1,18 @@ +package handler + +import ( + "encoding/json" + "net/http" +) + +type AgenticProbeBatch27Payload struct { + Name string +} + +func AgenticProbeBatch27(w http.ResponseWriter, r *http.Request) error { + var p AgenticProbeBatch27Payload + dec := json.NewDecoder(r.Body) + _ = dec.Decode(&p) + _ = json.NewEncoder(w).Encode(map[string]any{"ok": true, "name": p.Name}) + return nil +}