mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 12:41:55 +08:00

* Fix relative import path computation * Fix models output path * Add option to generate bindings using bundled runtime * Update binding example * Fix testdata * Update changelog --------- Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
8 lines
146 B
Go
8 lines
146 B
Go
package data
|
|
|
|
// Person holds someone's most important attributes
|
|
type Person struct {
|
|
// Name is the person's name
|
|
Name string `json:"name"`
|
|
}
|