(client *api.Client)
| 435 | } |
| 436 | |
| 437 | func fetchCreatePricingCmd(client *api.Client) tea.Cmd { |
| 438 | return func() tea.Msg { |
| 439 | rates, err := client.FetchPricing() |
| 440 | return createPricingMsg{rates: rates, err: err} |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | func fetchCreateSpecsCmd(client *api.Client) tea.Cmd { |
| 445 | return func() tea.Msg { |