1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-07 09:37:49 +02:00
seaweedfs/weed/server/master_ui/templates.go

12 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))