Files
ai-ops/internal/handler/utils.go
2026-05-12 17:48:22 +08:00

11 lines
150 B
Go

package handler
import (
"encoding/json"
"net/http"
)
func decodeJSON(r *http.Request, v any) error {
return json.NewDecoder(r.Body).Decode(v)
}