// 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))) }