blob: d08f95e0e1dc798294615397eb6fa55427e1270f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package view
import (
"embed"
"html/template"
)
//go:embed html/*.html
var htmlFS embed.FS
var html *template.Template
func Init() {
html = template.Must(template.New("html").ParseFS(htmlFS, "html/*.html"))
}
|