Small refactorings

This commit is contained in:
Deluan 2021-07-20 18:43:15 -04:00
parent 08840f6170
commit 7540881695
8 changed files with 13 additions and 19 deletions

View file

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