Remove dependency of deprecated ioutil package

This commit is contained in:
Deluan 2021-07-20 20:00:58 -04:00
parent 774ad65155
commit 8afa2cd833
23 changed files with 77 additions and 86 deletions

View file

@ -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)
}