feat(internal): add /query API to codegen (#62)

This commit is contained in:
Daniel Moran
2021-05-05 11:01:24 -04:00
committed by GitHub
parent f95668ada6
commit c44fec7d6d
51 changed files with 8857 additions and 1 deletions

View File

@ -55,6 +55,8 @@ type APIClient struct {
OrganizationsApi OrganizationsApi
QueryApi QueryApi
SetupApi SetupApi
WriteApi WriteApi
@ -80,6 +82,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
c.BucketsApi = (*BucketsApiService)(&c.common)
c.HealthApi = (*HealthApiService)(&c.common)
c.OrganizationsApi = (*OrganizationsApiService)(&c.common)
c.QueryApi = (*QueryApiService)(&c.common)
c.SetupApi = (*SetupApiService)(&c.common)
c.WriteApi = (*WriteApiService)(&c.common)