fix master ui

This commit is contained in:
Konstantin Lebedev
2022-04-07 19:37:40 +05:00
parent 35bc67f030
commit a2fdb3e277
4 changed files with 181 additions and 39 deletions

View File

@@ -8,4 +8,8 @@ import (
//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))