blob: 3fc0d89c412f04eb3f806223366753392757b2fb (
plain)
1
2
3
4
5
6
7
8
9
|
// Package ui holds the static web UI.
package ui
import "net/http"
// Register arranges for mux to serve the embedded frontend.
func Register(mux *http.ServeMux) {
mux.Handle("GET /", http.FileServer(http.FS(static)))
}
|