(client *api.Client)
| 566 | } |
| 567 | |
| 568 | func downloadMetadataCmd(client *api.Client) tea.Cmd { |
| 569 | return func() tea.Msg { |
| 570 | err := client.DownloadMetadataGz() |
| 571 | return metadataReadyMsg{err: err} |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | func fetchPricingCmd(client *api.Client, products, regions []string, attrs map[string]string, prices []string) tea.Cmd { |
| 576 | return func() tea.Msg { |
no test coverage detected