11 lines
153 B
Go
11 lines
153 B
Go
package templates
|
|
|
|
import (
|
|
"embed"
|
|
"html/template"
|
|
)
|
|
|
|
//go:embed *.html
|
|
var FS embed.FS
|
|
|
|
var Templates = template.Must(template.ParseFS(FS, "*.html")) |