(client *api.Client, products, regions []string, attrs map[string]string, prices []string)
| 573 | } |
| 574 | |
| 575 | func fetchPricingCmd(client *api.Client, products, regions []string, attrs map[string]string, prices []string) tea.Cmd { |
| 576 | return func() tea.Msg { |
| 577 | resp, err := client.FetchPricing(products, regions, attrs, prices) |
| 578 | return pricingResultMsg{resp: resp, err: err} |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | // ── Helpers ─────────────────────────────────────────────────────────────────── |
| 583 |
no test coverage detected