Init initializes the model.
()
| 604 | |
| 605 | // Init initializes the model. |
| 606 | func (m *appModel) Init() tea.Cmd { |
| 607 | return tea.Batch(m.init(), m.tourStartupCmd()) |
| 608 | } |
| 609 | |
| 610 | // tourStartupCmd applies the configured startup tour mode: start the tour |
| 611 | // right away or open the first-run offer dialog. Lean mode has no overlay |
nothing calls this directly
no test coverage detected