(client *api.Client)
| 428 | } |
| 429 | |
| 430 | func fetchCreateSnapshotsCmd(client *api.Client) tea.Cmd { |
| 431 | return func() tea.Msg { |
| 432 | snapshots, err := client.ListSnapshots() |
| 433 | return createSnapshotsMsg{snapshots: []api.Snapshot(snapshots), err: err} |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | func fetchCreatePricingCmd(client *api.Client) tea.Cmd { |
| 438 | return func() tea.Msg { |