How to reverse proxy web requests for a few routes to another backend in Gin Gonic web golang framework

Is there a way to directly forward in the Handle function as shown below?

 router := gin.New() router.Handle("POST", "/api/v1/endpoint1", ForwardToAnotherBackend)