This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
2024-04-25 07:37:16 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-04-25 16:44:42 +01:00
|
|
|
"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()
|
|
|
|
}
|