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