Browse Source

Merge pull request #8 from r8k/master

Fix Port usage
Javier Provecho 11 years ago
parent
commit
7a07b26cc2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/example_basic.go

+ 1 - 1
examples/example_basic.go

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