package requests type KV struct { Key string `json:"key,omitempty"` Value any `json:"value,omitempty"` } func NewKV(k string, v any) KV { return KV{Key: k, Value: v} }