bottin/v4/web/embed.go
Victor Lacasse-Beaudoin 3ccebd8cfb Refactor app sous v4/
2023-05-25 02:21:09 -04:00

11 lines
125 B
Go

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