| 14 | const defaultBaseURL = "https://api.cloudflare.com" |
| 15 | |
| 16 | type Client struct { |
| 17 | BaseURL string |
| 18 | AccountID string |
| 19 | QueueID string |
| 20 | Token string |
| 21 | HTTP *http.Client |
| 22 | } |
| 23 | |
| 24 | func NewClient(accountID, queueID, token string) *Client { |
| 25 | return &Client{ |
nothing calls this directly
no outgoing calls
no test coverage detected