11 lines
178 B
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}
|
|
}
|