mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-07-04 02:32:48 +02:00
11 lines
177 B
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))
|