Files
hakurei/cmd/pkgserver/internal/ui/ui.go
2026-05-02 03:21:02 +09:00

10 lines
224 B
Go

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