Run executes the command within the provided context and ActionPlan. It performs the actual operation and returns an error if execution fails. NOTE: Returning an error will currently stop the execution of the action plan.
(ctx context.Context, plan *ActionPlan)
| 37 | // It performs the actual operation and returns an error if execution fails. |
| 38 | // NOTE: Returning an error will currently stop the execution of the action plan. |
| 39 | Run(ctx context.Context, plan *ActionPlan) error |
| 40 | |
| 41 | // OperationType returns a unique string representing the type of operation to perform |
| 42 | // (e.g., "download", "enable"). |
no outgoing calls