AddModel is the resolver for the addModel field.
(ctx context.Context, input model.AddModelInput)
| 17 | |
| 18 | // AddModel is the resolver for the addModel field. |
| 19 | func (r *mutationResolver) AddModel(ctx context.Context, input model.AddModelInput) (*model.Model, error) { |
| 20 | return models.Add(ctx, input) |
| 21 | } |
| 22 | |
| 23 | // AddModelDeployment is the resolver for the addModelDeployment field. |
| 24 | func (r *mutationResolver) AddModelDeployment(ctx context.Context, input model.AddModelDeploymentInput) (*model.Model, error) { |