(client *api.Client, specs *utils.SpecStore)
| 1169 | } |
| 1170 | |
| 1171 | func RunCreateInteractive(client *api.Client, specs *utils.SpecStore) (*CreateConfig, error) { |
| 1172 | InitCommonStyles(os.Stdout) |
| 1173 | m := NewCreateModel(client, specs) |
| 1174 | return runCreateModel(m) |
| 1175 | } |
| 1176 | |
| 1177 | // RunCreateHybrid runs the create TUI with some steps pre-filled from CLI flags. |
| 1178 | func RunCreateHybrid(client *api.Client, specs *utils.SpecStore, presets *CreatePresets) (*CreateConfig, error) { |
no test coverage detected