(ctx *gin.Context, appId string, input *service_dto.UpdateApp)
| 769 | return app, nil |
| 770 | } |
| 771 | func (i *imlAppController) UpdateApp(ctx *gin.Context, appId string, input *service_dto.UpdateApp) (*service_dto.App, error) { |
| 772 | return i.module.UpdateApp(ctx, appId, input) |
| 773 | } |
| 774 | |
| 775 | func (i *imlAppController) SearchMyApps(ctx *gin.Context, teamId string, keyword string) ([]*service_dto.AppItem, error) { |
| 776 | return i.module.SearchMyApps(ctx, teamId, keyword) |