package appui
import (
_ "embed"
"strings"
)
//go:embed index.html
var indexHTML string
//go:embed app.css
var appCSS string
//go:embed app.js
var appJS string
// IndexHTML is the full GUI document (CSS/JS inlined for WebView2 / glaze).
var IndexHTML = buildIndexHTML()
func buildIndexHTML() string {
s := indexHTML
s = strings.Replace(s, ``, "", 1)
s = strings.Replace(s, ``, "", 1)
return s
}