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
commit 4f1af5d135

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