burgernotes-app/main.go

21 lines
438 B
Go
Raw Normal View History

2024-04-25 07:37:16 +01:00
package main
import (
"github.com/arzumify/webview_go-4.1"
2024-04-25 07:37:16 +01:00
"net/http"
)
func main() {
go func() {
http.Handle("/", http.StripPrefix("/", http.FileServer(http.Dir("./website"))))
http.ListenAndServe("localhost:52064", nil)
}()
w := webview.New(false)
defer w.Destroy()
w.SetTitle("Burgernotes")
w.SetSize(800, 800, webview.HintNone)
w.Navigate("http://localhost:52064")
w.Run()
}