Client is client to the Tempo API.
| 68 | |
| 69 | // Client is client to the Tempo API. |
| 70 | type Client struct { |
| 71 | BaseURL string |
| 72 | OrgID string |
| 73 | client *http.Client |
| 74 | headers map[string]string |
| 75 | queryParams map[string]string |
| 76 | QueryLiveStores bool |
| 77 | } |
| 78 | |
| 79 | func New(baseURL, orgID string) *Client { |
| 80 | return &Client{ |
nothing calls this directly
no outgoing calls
no test coverage detected