RunModifyInteractive starts the interactive modify flow
(client *api.Client, instance *api.Instance, specs *utils.SpecStore)
| 851 | |
| 852 | // RunModifyInteractive starts the interactive modify flow |
| 853 | func RunModifyInteractive(client *api.Client, instance *api.Instance, specs *utils.SpecStore) (*ModifyConfig, error) { |
| 854 | m := NewModifyModel(client, instance, specs) |
| 855 | return runModifyModel(m) |
| 856 | } |
| 857 | |
| 858 | // RunModifyHybrid runs the modify TUI with some steps pre-filled from CLI flags. |
| 859 | func RunModifyHybrid(client *api.Client, instance *api.Instance, specs *utils.SpecStore, presets *ModifyPresets) (*ModifyConfig, error) { |
no test coverage detected