gitee.com/h79/goutils@v1.22.10/common/attributes/keyvalue.go (about)

     1  package attributes
     2  
     3  type KV struct {
     4  	Key interface{} `json:"key"`
     5  	Val interface{} `json:"value"`
     6  }