aboutsummaryrefslogtreecommitdiff
path: root/template/go/base-web-gin.go
diff options
context:
space:
mode:
Diffstat (limited to 'template/go/base-web-gin.go')
-rw-r--r--template/go/base-web-gin.go2
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()