(ctx *gin.Context, serviceId string)
| 739 | } |
| 740 | |
| 741 | func (i *imlAppController) SearchCanSubscribe(ctx *gin.Context, serviceId string) ([]*service_dto.SubscribeAppItem, error) { |
| 742 | items, _, err := i.module.SearchCanSubscribe(ctx, serviceId) |
| 743 | return items, err |
| 744 | } |
| 745 | |
| 746 | func (i *imlAppController) Search(ctx *gin.Context, teamId string, keyword string) ([]*service_dto.AppItem, error) { |
| 747 | return i.module.Search(ctx, teamId, keyword) |
nothing calls this directly
no test coverage detected