(ctx *gin.Context, project string, input *dto.CreateInput)
| 17 | } |
| 18 | |
| 19 | func (c *imlReleaseController) Create(ctx *gin.Context, project string, input *dto.CreateInput) error { |
| 20 | |
| 21 | _, err := c.module.Create(ctx, project, input) |
| 22 | return err |
| 23 | } |
| 24 | func (c *imlReleaseController) Delete(ctx *gin.Context, project string, id string) error { |
| 25 | return c.module.Delete(ctx, project, id) |
| 26 | } |