(ctx *gin.Context, teamId string, keyword string)
| 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) |
| 748 | } |
| 749 | |
| 750 | func (i *imlAppController) CreateApp(ctx *gin.Context, teamID string, input *service_dto.CreateApp) (*service_dto.App, error) { |
| 751 | app, err := i.module.CreateApp(ctx, teamID, input) |