quintodrome/assets/external.go

14 lines
184 B
Go
Raw Normal View History

2020-01-22 14:35:44 -09:00
// +build !embed
package assets
import (
"net/http"
"github.com/cloudsonic/sonic-server/consts"
)
func AssetFile() http.FileSystem {
return http.Dir(consts.UIAssetsLocalPath)
}