mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
14 lines
170 B
Go
14 lines
170 B
Go
package ui
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed build/*
|
|
var filesystem embed.FS
|
|
|
|
func BuildAssets() fs.FS {
|
|
build, _ := fs.Sub(filesystem, "build")
|
|
return build
|
|
}
|