micro/debug/handler/http/http.go
2019-05-31 01:22:19 +01:00

18 lines
283 B
Go

// 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":
}
}