mirror of
https://github.com/traefik/traefik
synced 2026-02-03 08:50:32 +00:00
12 lines
237 B
Go
12 lines
237 B
Go
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
|
|
}
|