navidrome/assets/external.go
2020-01-23 19:44:08 -05:00

13 lines
177 B
Go

// +build !embed
package assets
import (
"net/http"
"github.com/deluan/navidrome/consts"
)
func AssetFile() http.FileSystem {
return http.Dir(consts.UIAssetsLocalPath)
}