mirror of
https://github.com/containous/traefik.git
synced 2025-02-01 05:47:13 +03:00
fadee5e87b
Co-authored-by: Kevin Pollet <pollet.kevin@gmail.com>
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
|
|
}
|