Fix Port usage

* Update Server's Listening Port from 8081 ==> 8080
This commit is contained in:
Rajiv Kilaparti 2014-07-01 11:37:13 +05:30
parent c69ecaaf75
commit 14077b1020
1 changed files with 1 additions and 1 deletions

View File

@ -51,5 +51,5 @@ func main() {
})
// Listen and Server in 0.0.0.0:8080
r.Run(":8081")
r.Run(":8080")
}