micro/debug/handler/http/http.go

18 lines
283 B
Go
Raw Normal View History

2019-05-31 03:22:19 +03:00
// Package http provides http handlers
package http
import (
"net/http"
)
type Handler struct{}
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/debug/health":
case "/debug/log":
case "/debug/stats":
case "/debug/trace":
}
}