Files
lg/frontend/frontend.go
Mans Ziesel 3646044031
All checks were successful
goreleaser / goreleaser (push) Successful in 1m52s
update frontend, embed files and templates in binary
2025-08-28 20:27:17 +02:00

12 lines
141 B
Go

package frontend
import (
"embed"
)
//go:embed templates
var FrontendTemplateFS embed.FS
//go:embed static
var FrontendStaticFS embed.FS