| 14 | ) |
| 15 | |
| 16 | type imlCatalogueController struct { |
| 17 | catalogueModule catalogue.ICatalogueModule `autowired:""` |
| 18 | appModule service.IAppModule `autowired:""` |
| 19 | tagModule tag.ITagModule `autowired:""` |
| 20 | } |
| 21 | |
| 22 | func (i *imlCatalogueController) Sort(ctx *gin.Context, sorts *[]*catalogue_dto.SortItem) error { |
| 23 | return i.catalogueModule.Sort(ctx, *sorts) |
nothing calls this directly
no outgoing calls
no test coverage detected