11 lines
141 B
Go
11 lines
141 B
Go
|
package templates
|
||
|
|
||
|
import "embed"
|
||
|
|
||
|
//go:embed html/*.gohtml
|
||
|
var templatesFS embed.FS
|
||
|
|
||
|
func GetTemplatesFS() embed.FS {
|
||
|
return templatesFS
|
||
|
}
|