updates
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-11 13:28:59 +11:00
parent 60af423335
commit 8698983bbf
2 changed files with 17 additions and 0 deletions

15
cmd/webui-gen/main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"log"
"os"
"xteve/src"
)
func main() {
src.HTMLInit("webUI", "src", "html"+string(os.PathSeparator), "src"+string(os.PathSeparator)+"webUI.go")
if err := src.BuildGoFile(); err != nil {
log.Fatal(err)
}
}