bottin/v4/web/embed.go

11 lines
125 B
Go
Raw Normal View History

2023-05-25 01:21:09 -05:00
package web
import "embed"
//go:embed templates
var templates embed.FS
func GetTemplates() embed.FS {
return templates
}