tstor/torrent/assets.go
Antonio Navarro Perez ecd524ed3c First functional web interface version.
- Simplify by now all html and javascript.
- Added a simple interface using go templates and plain javascript.
- Improved REST interface for the use case.
- Changed some properties into the config file to make it suitable for
future use cases.

Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
2020-05-18 19:42:23 +02:00

11 lines
209 B
Go

// +build !release
package distribyted
//go:generate go run ./assets_generate.go
import (
"net/http"
)
var Assets http.FileSystem = http.Dir("assets")
var Templates http.FileSystem = http.Dir("templates")