123456789101112131415161718192021222324252627282930313233 |
- // Package {{.PackageName}} provides primitives to interact with the openapi HTTP API.
- //
- // Code generated by {{.ModuleName}} version {{.Version}} DO NOT EDIT.
- package {{.PackageName}}
- import (
- "bytes"
- "compress/gzip"
- "context"
- "encoding/base64"
- "encoding/json"
- "encoding/xml"
- "fmt"
- "gopkg.in/yaml.v3"
- "io"
- "io/ioutil"
- "net/http"
- "net/url"
- "path"
- "strings"
- "time"
- "github.com/deepmap/oapi-codegen/pkg/runtime"
- openapi_types "github.com/deepmap/oapi-codegen/pkg/types"
- ihttp "github.com/influxdata/influxdb-client-go/v2/api/http"
- "github.com/getkin/kin-openapi/openapi3"
- "github.com/go-chi/chi/v5"
- "github.com/labstack/echo/v4"
- "github.com/pkg/errors"
- {{- range .ExternalImports}}
- {{ . }}
- {{- end}}
- )
|