Files
PLG-MuDiCS/control/frontend/embed.go
T
2025-11-04 17:43:38 +01:00

16 lines
282 B
Go

package frontend
import (
"embed"
"io/fs"
)
//go:generate deno install
//go:generate deno task build
//go:embed all:build
var buildDir embed.FS
// BuildDirFS contains the embedded dist directory files (without the "build" prefix)
var BuildDirFS, _ = fs.Sub(buildDir, "build")