tstor/http_fs.go
Antonio Navarro Perez 11d501cd51 Implement logrus, fix httpFs
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
2020-07-14 13:55:08 +02:00

15 lines
280 B
Go

// +build !release
package distribyted
//go:generate go run ./cmd/assets_generate/main.go
import (
"net/http"
"github.com/shurcooL/httpfs/union"
)
var HttpFS = union.New(map[string]http.FileSystem{
"/assets": http.Dir("assets"),
"/templates": http.Dir("templates"),
})