mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:42:23 +08:00
10 lines
131 B
Go
10 lines
131 B
Go
package bind
|
|
|
|
func IsStructPointer(value interface{}) bool {
|
|
switch t := value.(type) {
|
|
default:
|
|
println(t)
|
|
}
|
|
return false
|
|
}
|