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