Client is the client used to subscribe to the Logs API
| 17 | |
| 18 | // Client is the client used to subscribe to the Logs API |
| 19 | type Client struct { |
| 20 | httpClient *http.Client |
| 21 | logsApiBaseUrl string |
| 22 | } |
| 23 | |
| 24 | // NewClient returns a new Client with the given URL |
| 25 | func NewClient(logsApiBaseUrl string) (*Client, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected