1
0
mirror of https://github.com/containous/traefik.git synced 2025-03-15 02:50:12 +03:00
traefik/middlewares/stateful.go

13 lines
256 B
Go
Raw Permalink Normal View History

package middlewares
import "net/http"
// Stateful interface groups all http interfaces that must be
// implemented by a stateful middleware (ie: recorders)
type Stateful interface {
http.ResponseWriter
http.Hijacker
http.Flusher
http.CloseNotifier
}