1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2025-07-04 02:32:48 +02:00
seaweedfs/weed/server/master_ui/templates.go

11 lines
177 B
Go

package master_ui
import (
_ "embed"
"html/template"
)
//go:embed master.html
var masterHtml string
var StatusTpl = template.Must(template.New("status").Parse(masterHtml))