mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
12 lines
177 B
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))
|