diff --git a/_examples/mvc/overview/main.go b/_examples/mvc/overview/main.go index 03230030..7476d9b7 100644 --- a/_examples/mvc/overview/main.go +++ b/_examples/mvc/overview/main.go @@ -17,7 +17,7 @@ func main() { mvc.Configure(app.Party("/greet"), setup) // http://localhost:8080/greet?name=kataras - addr := ":" + environment.Getenv("PORT", ":8080") + addr := ":" + environment.Getenv("PORT", "8080") app.Listen(addr, iris.WithLogLevel("debug")) }