Client implements the Gmail API interface.
| 29 | |
| 30 | // Client implements the Gmail API interface. |
| 31 | type Client struct { |
| 32 | httpClient *http.Client |
| 33 | rateLimiter *RateLimiter |
| 34 | logger *slog.Logger |
| 35 | userID string // "me" for authenticated user |
| 36 | concurrency int // Max parallel requests for batch operations |
| 37 | } |
| 38 | |
| 39 | // ClientOption configures a Client. |
| 40 | type ClientOption func(*Client) |
nothing calls this directly
no outgoing calls
no test coverage detected