You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/api/util.go

16 lines
246 B

package api
type GenericResult interface {
GetItem() interface{}
GetResponse() *Response
}
type GenericDeleteResult interface {
GetResponse() *Response
}
type GenericListResult interface {
GetItems() interface{}
GetResponse() *Response
}