()
| 36 | } |
| 37 | |
| 38 | func newAPIClient() *httpsms.Client { |
| 39 | return httpsms.New( |
| 40 | httpsms.WithBaseURL(apiBaseURL), |
| 41 | httpsms.WithAPIKey(userAPIKey), |
| 42 | ) |
| 43 | } |
| 44 | |
| 45 | func newPhoneClient(phoneAPIKey string) *httpsms.Client { |
| 46 | return httpsms.New( |
no outgoing calls
no test coverage detected