(initial launchSelection, in wizardInput, needTool, needEndpoint, needModel bool)
| 156 | } |
| 157 | |
| 158 | func newLaunchWizardModel(initial launchSelection, in wizardInput, |
| 159 | needTool, needEndpoint, needModel bool) launchWizardModel { |
| 160 | m := launchWizardModel{ |
| 161 | in: in, |
| 162 | sel: initial, |
| 163 | needTool: needTool, |
| 164 | needEndpoint: needEndpoint, |
| 165 | needModel: needModel, |
| 166 | } |
| 167 | m.advanceToNextNeededPhase() |
| 168 | return m |
| 169 | } |
| 170 | |
| 171 | func (m launchWizardModel) Init() tea.Cmd { return nil } |
| 172 |