14 lines
185 B
Go
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")
|
|
}
|