()
| 60 | } |
| 61 | |
| 62 | func (m *cliProgress) Init() tea.Cmd { |
| 63 | return tea.Batch( |
| 64 | m.runTask(), |
| 65 | m.waitForProgress(), |
| 66 | m.progress.Init(), |
| 67 | ) |
| 68 | } |
| 69 | |
| 70 | func (m *cliProgress) Update(msg tea.Msg) (tea.Model, tea.Cmd) { |
| 71 | switch msg := msg.(type) { |
nothing calls this directly
no test coverage detected