prism/service/integration/embed.go

10 lines
140 B
Go

package integration
import "embed"
//go:embed templates/*.html
var templates embed.FS
func GetTemplates() embed.FS {
return templates
}