UserExampleHandler defining the handler interface
| 23 | |
| 24 | // UserExampleHandler defining the handler interface |
| 25 | type UserExampleHandler interface { |
| 26 | Create(c *gin.Context) |
| 27 | DeleteByID(c *gin.Context) |
| 28 | UpdateByID(c *gin.Context) |
| 29 | GetByID(c *gin.Context) |
| 30 | List(c *gin.Context) |
| 31 | } |
| 32 | |
| 33 | type userExampleHandler struct { |
| 34 | iDao dao.UserExampleDao |
no outgoing calls
no test coverage detected