added REST API and simple unit test - and compose starter, still WIP for integ test
This commit is contained in:
17
vendor/github.com/go-chi/chi/middleware/closenotify18.go
generated
vendored
Normal file
17
vendor/github.com/go-chi/chi/middleware/closenotify18.go
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// +build go1.8
|
||||
|
||||
package middleware
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// CloseNotify is a middleware that cancels ctx when the underlying
|
||||
// connection has gone away. It can be used to cancel long operations
|
||||
// on the server when the client disconnects before the response is ready.
|
||||
//
|
||||
// Note: this behaviour is standard in Go 1.8+, so the middleware does nothing
|
||||
// on 1.8+ and exists just for backwards compatibility.
|
||||
func CloseNotify(next http.Handler) http.Handler {
|
||||
return next
|
||||
}
|
||||
Reference in New Issue
Block a user