mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
15 lines
181 B
Go
15 lines
181 B
Go
package templates
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
|
|
"github.com/gobuffalo/buffalo"
|
|
)
|
|
|
|
//go:embed * */*
|
|
var files embed.FS
|
|
|
|
func FS() fs.FS {
|
|
return buffalo.NewFS(files, "templates")
|
|
}
|