Files
tg_exporter/frontend/dist.go
2024-09-21 13:52:47 +08:00

19 lines
264 B
Go

package frontend
import "embed"
// embedded files
//
//go:embed dist/assets/*
var StaticDist embed.FS
// embedded dist/favicon.ico
//
//go:embed dist/favicon.ico
var Favicon []byte
// embedded dist/index.html
//
//go:embed dist/index.html
var IndexPage string