This repository has been archived on 2024-12-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bottin/v4/web/embed.go
Victor Lacasse-Beaudoin 3ccebd8cfb Refactor app sous v4/
2023-05-25 02:21:09 -04:00

10 lines
125 B
Go

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