mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
19 lines
272 B
Go
19 lines
272 B
Go
// +build !embed
|
|
|
|
package assets
|
|
|
|
import (
|
|
"net/http"
|
|
"sync"
|
|
|
|
"github.com/navidrome/navidrome/log"
|
|
)
|
|
|
|
var once sync.Once
|
|
|
|
func AssetFile() http.FileSystem {
|
|
once.Do(func() {
|
|
log.Warn("Using external assets from 'ui/build' folder")
|
|
})
|
|
return http.Dir("ui/build")
|
|
}
|