refactor: switch to OpenAPITools's generator for our HTTP clients (#33)

* build: add CI job to check OpenAPI generation is clean
* feat: add hidden flag for HTTP debug
This commit is contained in:
Daniel Moran
2021-04-16 17:16:58 -04:00
committed by GitHub
parent ca8a5c5364
commit 4f62e469e9
32 changed files with 2213 additions and 603 deletions

View File

@ -2,8 +2,6 @@ package internal
import (
"io"
"github.com/influxdata/influx-cli/v2/internal/api"
)
type CLI struct {
@ -11,5 +9,5 @@ type CLI struct {
Stdout io.Writer
Stderr io.Writer
TraceId *api.TraceSpan
TraceId string
}