mirror of
https://github.com/taigrr/wails.git
synced 2026-04-14 02:48:21 -07:00
16 lines
201 B
Go
16 lines
201 B
Go
package main
|
|
|
|
import (
|
|
"github.com/wailsapp/wails/v2"
|
|
)
|
|
|
|
func main() {
|
|
|
|
// Create application with options
|
|
app := wails.CreateApp("{{.ProjectName}}", 1024, 768)
|
|
|
|
app.Bind(newBasic())
|
|
|
|
app.Run()
|
|
}
|