diff --git a/src/goproxy/go.mod b/src/goproxy/go.mod new file mode 100644 index 0000000000000000000000000000000000000000..e1d9074e7f6952566ec40db02e9a026db4f512fa --- /dev/null +++ b/src/goproxy/go.mod @@ -0,0 +1,5 @@ +module github.com/turngeek/examples-go/src/goproxy + +go 1.16 + +require github.com/gorilla/mux v1.8.0 // indirect diff --git a/src/goproxy/go.sum b/src/goproxy/go.sum new file mode 100644 index 0000000000000000000000000000000000000000..535028803d222b0e4e9174f56529c0ed9fece4e0 --- /dev/null +++ b/src/goproxy/go.sum @@ -0,0 +1,2 @@ +github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=