navidrome/assets/external.go
2020-01-22 18:38:54 -05:00

14 lines
184 B
Go

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