(ctx *gin.Context, serviceId string, apiId string, dto *router_dto.Edit)
| 33 | } |
| 34 | |
| 35 | func (i *imlAPIController) Edit(ctx *gin.Context, serviceId string, apiId string, dto *router_dto.Edit) (*router_dto.SimpleDetail, error) { |
| 36 | return i.module.Edit(ctx, serviceId, apiId, dto) |
| 37 | } |
| 38 | |
| 39 | func (i *imlAPIController) Delete(ctx *gin.Context, serviceId string, apiId string) error { |
| 40 | return i.module.Delete(ctx, serviceId, apiId) |