mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-12 10:20:10 +03:00
15 lines
170 B
Go
15 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
|
|
}
|