mirror of
https://github.com/taigrr/wails.git
synced 2026-04-17 12:15:02 -07:00
14 lines
148 B
Go
14 lines
148 B
Go
package backendjs
|
|
|
|
import "reflect"
|
|
|
|
type Struct struct {
|
|
Name string
|
|
Fields []*Field
|
|
}
|
|
|
|
type Field struct {
|
|
Name string
|
|
Type reflect.Value
|
|
}
|