mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Remove dependency of deprecated ioutil
package
This commit is contained in:
parent
774ad65155
commit
8afa2cd833
23 changed files with 77 additions and 86 deletions
|
@ -2,7 +2,7 @@ package resources
|
|||
|
||||
import (
|
||||
"embed"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
)
|
||||
|
||||
//go:embed *
|
||||
|
@ -13,5 +13,5 @@ func Asset(path string) ([]byte, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return ioutil.ReadAll(f)
|
||||
return io.ReadAll(f)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue