mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
19 lines
377 B
Go
19 lines
377 B
Go
// mod is the entry point to all of the etcd modules.
|
|
package mod
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/coreos/etcd/mod/dashboard"
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
var ServeMux *http.Handler
|
|
|
|
func HttpHandler() (handler http.Handler) {
|
|
modMux := mux.NewRouter()
|
|
modMux.PathPrefix("/dashboard/").
|
|
Handler(http.StripPrefix("/dashboard/", dashboard.HttpHandler()))
|
|
return modMux
|
|
}
|