mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Small refactorings
This commit is contained in:
parent
08840f6170
commit
7540881695
8 changed files with 13 additions and 19 deletions
|
@ -2,21 +2,16 @@ package resources
|
|||
|
||||
import (
|
||||
"embed"
|
||||
"io/fs"
|
||||
"io/ioutil"
|
||||
)
|
||||
|
||||
//go:embed *
|
||||
var filesystem embed.FS
|
||||
var FS embed.FS
|
||||
|
||||
func Asset(path string) ([]byte, error) {
|
||||
f, err := filesystem.Open(path)
|
||||
f, err := FS.Open(path)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return ioutil.ReadAll(f)
|
||||
}
|
||||
|
||||
func Assets() fs.FS {
|
||||
return filesystem
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue