mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
c653538b31
for more independence and offline support
13 lines
224 B
Go
13 lines
224 B
Go
package web
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed all:static
|
|
var staticDir embed.FS
|
|
|
|
// BuildDirFS contains the embedded dist directory files (without the "build" prefix)
|
|
var StaticDirFS, _ = fs.Sub(staticDir, "static")
|