From 3d002e382355cafc15d706b92899b1961d5b79e9 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Sat, 30 Jan 2016 01:28:57 +0100 Subject: [PATCH] Updates read --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0b87f3c0..2a111d29 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,11 @@ import "github.com/gin-gonic/gin" func main() { r := gin.Default() r.GET("/ping", func(c *gin.Context) { - c.String(200, "pong") + c.JSON(200, gin.H{ + "message": "hello world", + }) }) - r.Run(":8080") // listen and serve on 0.0.0.0:8080 + r.Run() // listen and server on 0.0.0.0:8080 } ``` @@ -110,8 +112,10 @@ func main() { router.HEAD("/someHead", head) router.OPTIONS("/someOptions", options) - // Listen and server on 0.0.0.0:8080 - router.Run(":8080") + // By default it serves on :8080 unless a + // PORT environment variable was defined. + router.Run() + // router.Run.Run(":3000") for a hard coded port } ```