cabinet/internal/static/static.go

16 lines
203 B
Go

package static
import (
"embed"
"html/template"
)
var (
//go:embed index.tmpl
indexTmpl string
Index = template.Must(template.New("").Parse(indexTmpl))
//go:embed sakura.css
CSS embed.FS
)