diff options
Diffstat (limited to 'template/go/base-web-gin.go')
-rw-r--r-- | template/go/base-web-gin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/go/base-web-gin.go b/template/go/base-web-gin.go index 3ed49b0..dbfafb5 100644 --- a/template/go/base-web-gin.go +++ b/template/go/base-web-gin.go @@ -10,7 +10,7 @@ func main() { r := gin.Default() r.GET("/", func(c *gin.Context) { c.JSON(200, gin.H{ - "message": "Hello World", + "message": "{{_cursor_}}", }) }) r.Run() |