174644b63c
add openapi infra * add openapi infra Includes generated stubs and all deps * generatetolocation * basesetupoffunctionsandclient * round1controllertests * passintegrationtests * cleanupfromfullsuite * storedjson * fixjsonyaml * fixtests Approved-by: Michael McGuinness
10 lines
265 B
Go
10 lines
265 B
Go
package openapi3
|
|
|
|
//go:generate go run refsgenerator.go
|
|
|
|
// Ref is specified by OpenAPI/Swagger 3.0 standard.
|
|
// See https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#reference-object
|
|
type Ref struct {
|
|
Ref string `json:"$ref" yaml:"$ref"`
|
|
}
|