mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 08:34:15 +01:00
14 lines
151 B
Go
14 lines
151 B
Go
|
package static
|
||
|
|
||
|
import "embed"
|
||
|
|
||
|
var (
|
||
|
//go:embed static
|
||
|
FileSystem embed.FS
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
RootPath = "static"
|
||
|
IndexPath = RootPath + "/index.html"
|
||
|
)
|