Files

10 lines
131 B
Go
Raw Permalink Normal View History

2020-09-15 19:52:54 -05:00
package bind
func IsStructPointer(value interface{}) bool {
switch t := value.(type) {
default:
println(t)
}
return false
}