(c *gin.Context)
| 43 | }) |
| 44 | } |
| 45 | func (controller *HelloController) PutTest(c *gin.Context) { |
| 46 | c.JSON(http.StatusOK, gin.H{ |
| 47 | "code": 0, |
| 48 | "msg": "PutTest", |
| 49 | "data": nil, |
| 50 | }) |
| 51 | } |
| 52 | |
| 53 | func (controller *HelloController) OptionsTest(c *gin.Context) { |
| 54 | c.JSON(http.StatusOK, gin.H{ |
nothing calls this directly
no outgoing calls
no test coverage detected