mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-15 15:15:51 +01:00
9 lines
131 B
Go
9 lines
131 B
Go
package bind
|
|
|
|
func IsStructPointer(value interface{}) bool {
|
|
switch t := value.(type) {
|
|
default:
|
|
println(t)
|
|
}
|
|
return false
|
|
}
|