blob: 415022b9739f0040b43e22b3993edaba8170c266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package master_ui
import (
_ "embed"
"html/template"
)
//go:embed master.html
var masterHtml string
var StatusTpl = template.Must(template.New("status").Parse(masterHtml))
|