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