mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
16 lines
314 B
Go
16 lines
314 B
Go
// +build go1.8
|
|
|
|
package middleware
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
)
|
|
|
|
func (w *maybeCompressResponseWriter) Push(target string, opts *http.PushOptions) error {
|
|
if ps, ok := w.w.(http.Pusher); ok {
|
|
return ps.Push(target, opts)
|
|
}
|
|
return errors.New("chi/middleware: http.Pusher is unavailable on the writer")
|
|
}
|