Skip to content

Instantly share code, notes, and snippets.

@LautaroJayat
Created May 10, 2021 15:33
Show Gist options
  • Save LautaroJayat/e9ac9171f5f41a14768af82c5fcbc95c to your computer and use it in GitHub Desktop.
Save LautaroJayat/e9ac9171f5f41a14768af82c5fcbc95c to your computer and use it in GitHub Desktop.
package strategy
import (
"net/http"
"net/http/httputil"
"github.com/julienschmidt/httprouter"
)
func FwdOptionsReq(rp *httputil.ReverseProxy) httprouter.Handle{
return func (w http.ResponseWriter, r *http.Request, _ httprouter.Params){
rp.ServeHTTP(w, r)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment