1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-02-08 01:20:07 +08:00
1Panel/cmd/server/web/static.go
2022-10-18 11:30:02 +08:00

16 lines
204 B
Go

package web
import "embed"
//go:embed index.html
var IndexHtml embed.FS
//go:embed assets/*
var Assets embed.FS
//go:embed index.html
var IndexByte []byte
//go:embed favicon.ico
var Favicon embed.FS