forked from rosa/hakurei
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)))
|
|
}
|