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

Merge pull request #1560 from Dexus/patch-1

fix #1559 - remove not need colon

Former-commit-id: 379172fe09cc4c82470983e88e2beb0f3ea5863f
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-07-12 16:34:46 +03:00
committed by GitHub

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