gatus/web/static.go
2025-04-04 19:06:29 -07:00

14 lines
151 B
Go

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