gatus/web/static.go
2022-10-09 21:33:31 -04:00

14 lines
151 B
Go

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