Files
dex/web/web.go
Maksim Nabokikh fc0e2e9383 feat: Add default robots.txt (#2834)
Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
2023-02-23 15:53:09 +01:00

15 lines
205 B
Go

package web
import (
"embed"
"io/fs"
)
//go:embed static/* templates/* themes/* robots.txt
var files embed.FS
// FS returns a filesystem with the default web assets.
func FS() fs.FS {
return files
}