mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-13 02:37:18 +03:00
14 lines
184 B
Go
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)
|
|
}
|