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

20 lines
235 B

package api
func Bool(in bool) *bool {
ret := new(bool)
*ret = in
return ret
}
func String(in string) *string {
ret := new(string)
*ret = in
return ret
}
func Int(in int64) *int64 {
ret := new(int64)
*ret = in
return ret
}