This commit is contained in:
Jay 2018-04-13 18:18:59 +08:00
parent e8bec78493
commit 880a32a9c8
1 changed files with 6 additions and 0 deletions

View File

@ -35,5 +35,11 @@ func SetDefaultRoutes(r *gin.Engine) {
"message": "Success",
})
})
api.GET("s/", func(c *gin.Context) {
c.JSON(200, gin.H{
"status": 200,
"message": "api sssss",
})
})
}
}