()
| 183 | } |
| 184 | |
| 185 | func handleNoRoute() func(c *gin.Context) { |
| 186 | return func(c *gin.Context) { |
| 187 | c.JSON(404, gin.H{"code": "PAGE_NOT_FOUND", "message": "Page not found"}) |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | func helloHandler(c *gin.Context) { |
| 192 | claims := jwt.ExtractClaims(c) |
no outgoing calls
no test coverage detected
searching dependent graphs…