blob: eee6c1d36de416b3da04aad90773f01da0c02643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package gzip
import (
"net/http"
"github.com/NYTimes/gziphandler"
)
const PluginName = "gzip"
type Gzip struct{}
// needed for the Endure
func (g *Gzip) Init() error {
return nil
}
func (g *Gzip) Middleware(next http.Handler) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
gziphandler.GzipHandler(next).ServeHTTP(w, r)
}
}
func (g *Gzip) Name() string {
return PluginName
}
|