shad-go/middleware/httpgauge/httpgauge.go
2023-03-25 03:08:19 +04:00

23 lines
383 B
Go

//go:build !solution
package httpgauge
import "net/http"
type Gauge struct{}
func New() *Gauge {
panic("not implemented")
}
func (g *Gauge) Snapshot() map[string]int {
panic("not implemented")
}
func (g *Gauge) ServeHTTP(w http.ResponseWriter, r *http.Request) {
panic("not implemented")
}
func (g *Gauge) Wrap(next http.Handler) http.Handler {
panic("not implemented")
}