5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 20:03:01 +08:00
wails/cmd/templates/basic/main.go
2018-12-26 16:27:07 +11:00

20 lines
269 B
Go

package main
import (
wails "github.com/wailsapp/wails"
)
var html = `<h1> Basic Template </h1>`
func main() {
// Initialise the app
app := wails.CreateApp(&wails.AppConfig{
Width: 1024,
Height: 768,
Title: "My Project",
HTML: html,
})
app.Run()
}