Skip to content

Instantly share code, notes, and snippets.

View hasunpark's full-sized avatar

Hasun Park hasunpark

View GitHub Profile
@seblegall
seblegall / reverseproxy.go
Last active November 10, 2024 08:08
A reverse proxy in Golang using Gin
package main
import (
"fmt"
"net/http"
"net/http/httputil"
"net/url"
"github.com/gin-gonic/gin"
)