Run the service

Report a typo

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
}
Put the items in the correct order
")
127.0.0.1
:
router.Run("
5050
___

Create a free account to access the full topic