Place the parts of the Run method in the correct order to run a Gin web server on the IP address 127.0.0.1:5050.
package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
router := gin.Default()
// run method here
}