forked from rosa/hakurei
1d5d063d6a
This displays package metadata with optional status from a report.
10 lines
224 B
Go
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)))
|
|
}
|