Files
quyun-v2/backend/app/requests/label.go

11 lines
178 B
Go

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}
}