mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
17 lines
205 B
Go
17 lines
205 B
Go
package resources
|
|
|
|
import (
|
|
"embed"
|
|
"io"
|
|
)
|
|
|
|
//go:embed *
|
|
var FS embed.FS
|
|
|
|
func Asset(path string) ([]byte, error) {
|
|
f, err := FS.Open(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return io.ReadAll(f)
|
|
}
|