Files
backrest/webui/webui.go

12 lines
172 B
Go

package webui
import (
"net/http"
"github.com/vearutop/statigz"
)
func Handler() http.Handler {
return statigz.FileServer(content, statigz.FSPrefix(contentPrefix))
}