(c *gin.Context)
| 129 | } |
| 130 | |
| 131 | func DelUserCache(c *gin.Context) { |
| 132 | username := c.Query("username") |
| 133 | err := op.DelUserCache(username) |
| 134 | if err != nil { |
| 135 | common.ErrorResp(c, err, 500) |
| 136 | return |
| 137 | } |
| 138 | common.SuccessResp(c) |
| 139 | } |
nothing calls this directly
no test coverage detected