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