yt/twitch fixes 2026

This commit is contained in:
Luxferre
2026-03-07 09:44:35 +02:00
parent 1d317247ca
commit d0993a0910
32 changed files with 28191 additions and 86 deletions
+12
View File
@@ -0,0 +1,12 @@
package main
import webview "github.com/webview/webview_go"
func main() {
w := webview.New(false)
defer w.Destroy()
w.SetTitle("Basic Example")
w.SetSize(480, 320, webview.HintNone)
w.SetHtml("Thanks for using webview!")
w.Run()
}