19 lines
264 B
Go
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
|