agendas/ui/embed.go

10 lines
109 B
Go

package ui
import "embed"
//go:embed *.html
var htmlFS embed.FS
func HTMLFS() embed.FS {
return htmlFS
}