aboutsummaryrefslogtreecommitdiff
path: root/weed/server/master_ui/templates.go
blob: a6dcc57d724b8ef164493d20b8b44dcbe0a75233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package master_ui

import (
	_ "embed"
	"html/template"
)

//go:embed master.html
var masterHtml string

//go:embed masterNewRaft.html
var masterNewRaftHtml string

var StatusTpl = template.Must(template.New("status").Parse(masterHtml))
var StatusNewRaftTpl = template.Must(template.New("status").Parse(masterNewRaftHtml))