1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 18:37:05 +00:00

fix #1559 - remove not need colon

fix #1559

Former-commit-id: 868c18f6cab6207a3fd433354490746e231c5b51
This commit is contained in:
2020-07-12 14:15:59 +02:00
committed by GitHub
parent c8ed26ee51
commit eca1cf315e

View File

@@ -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"))
}