templates/example/main.go
2025-04-07 05:35:41 -06:00

14 lines
185 B
Go

package main
import (
"embed"
"git.bivouac.wiki/use/templates"
)
//go:embed example_templates
var tpfs embed.FS
func main() {
templates.NewTemplates(tpfs, "example_templates")
}