mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
32 lines
451 B
Go
32 lines
451 B
Go
package resources
|
|
|
|
import (
|
|
"embed"
|
|
"io"
|
|
"io/fs"
|
|
"os"
|
|
"path"
|
|
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/utils"
|
|
)
|
|
|
|
var (
|
|
//go:embed *
|
|
fsys embed.FS
|
|
)
|
|
|
|
func FS() fs.FS {
|
|
return utils.MergeFS{
|
|
Base: fsys,
|
|
Overlay: os.DirFS(path.Join(conf.Server.DataFolder, "resources")),
|
|
}
|
|
}
|
|
|
|
func Asset(path string) ([]byte, error) {
|
|
f, err := FS().Open(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return io.ReadAll(f)
|
|
}
|