(phoneAPIKey string)
| 43 | } |
| 44 | |
| 45 | func newPhoneClient(phoneAPIKey string) *httpsms.Client { |
| 46 | return httpsms.New( |
| 47 | httpsms.WithBaseURL(apiBaseURL), |
| 48 | httpsms.WithAPIKey(phoneAPIKey), |
| 49 | ) |
| 50 | } |
| 51 | |
| 52 | func newWireMockClient() *wiremock.Client { |
| 53 | return wiremock.NewClient(wiremockURL) |