mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
13 lines
224 B
Go
13 lines
224 B
Go
package frontend
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//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")
|