package middleware import ( "net/http" "github.com/NYTimes/gziphandler" ) func Gzip(next http.Handler) http.Handler { return gziphandler.GzipHandler(next) }