mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-22 18:32:51 +02:00
15 lines
212 B
Go
15 lines
212 B
Go
package main
|
|
|
|
import (
|
|
"github.com/zserge/webview"
|
|
)
|
|
|
|
func main() {
|
|
w := webview.New(true)
|
|
w.Navigate("https://github.com")
|
|
w.SetTitle("Hello")
|
|
w.Dispatch(func() {
|
|
println("Hello dispatch")
|
|
})
|
|
w.Run()
|
|
}
|