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