feat: port influx write from influxdb (#47)

This commit is contained in:
Daniel Moran
2021-04-26 12:32:54 -04:00
committed by GitHub
parent bd97d2c7f3
commit 0e1db1e782
12 changed files with 1417 additions and 1 deletions

View File

@ -50,6 +50,8 @@ type APIClient struct {
HealthApi HealthApi
SetupApi SetupApi
WriteApi WriteApi
}
type service struct {
@ -70,6 +72,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
// API Services
c.HealthApi = (*HealthApiService)(&c.common)
c.SetupApi = (*SetupApiService)(&c.common)
c.WriteApi = (*WriteApiService)(&c.common)
return c
}