gatus/web/static.go

14 lines
151 B
Go
Raw Normal View History

package static
import "embed"
var (
//go:embed static
FileSystem embed.FS
)
const (
RootPath = "static"
IndexPath = RootPath + "/index.html"
)