agecem-org/templates/templates.go

11 lines
141 B
Go
Raw Normal View History

package templates
import "embed"
//go:embed html/*.gohtml
var templatesFS embed.FS
func GetTemplatesFS() embed.FS {
return templatesFS
}