()
| 307 | } |
| 308 | |
| 309 | func (m deleteProgressModel) Init() tea.Cmd { |
| 310 | return tea.Batch(m.spinner.Tick, deleteInstanceCmd(m.client, m.instanceID)) |
| 311 | } |
| 312 | |
| 313 | func (m deleteProgressModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { |
| 314 | switch msg := msg.(type) { |
nothing calls this directly
no test coverage detected