(ctx *gin.Context, id string)
| 62 | } |
| 63 | |
| 64 | func (i *imlCatalogueController) Delete(ctx *gin.Context, id string) error { |
| 65 | return i.catalogueModule.Delete(ctx, id) |
| 66 | } |
| 67 | |
| 68 | func (i *imlCatalogueController) Services(ctx *gin.Context, keyword string) ([]*catalogue_dto.ServiceItem, error) { |
| 69 | items, err := i.catalogueModule.Services(ctx, keyword) |