2020-01-22 14:35:44 -09:00
|
|
|
// +build !embed
|
|
|
|
|
|
|
|
|
|
package assets
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
|
2020-01-23 15:44:08 -09:00
|
|
|
"github.com/deluan/navidrome/consts"
|
2020-01-22 14:35:44 -09:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func AssetFile() http.FileSystem {
|
|
|
|
|
return http.Dir(consts.UIAssetsLocalPath)
|
|
|
|
|
}
|