mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Remove dependency of go-bindata (#818)
* Use new embed functionality for serving UI assets * Use new embed functionality for serving resources. Remove dependency on go-bindata * Remove Go 1.15
This commit is contained in:
parent
5a259ef3ff
commit
2d528bbc87
22 changed files with 60 additions and 150 deletions
22
resources/embed.go
Normal file
22
resources/embed.go
Normal file
|
@ -0,0 +1,22 @@
|
|||
package resources
|
||||
|
||||
import (
|
||||
"embed"
|
||||
"io/fs"
|
||||
"io/ioutil"
|
||||
)
|
||||
|
||||
//go:embed *
|
||||
var filesystem embed.FS
|
||||
|
||||
func Asset(path string) ([]byte, error) {
|
||||
f, err := filesystem.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