10 lines
244 B
Go
10 lines
244 B
Go
// Package docs embeds the OpenAPI 3.1 specification for the Veylant IA Proxy API.
|
|
package docs
|
|
|
|
import _ "embed"
|
|
|
|
// OpenAPIYAML contains the raw OpenAPI 3.1 spec served at /docs/openapi.yaml.
|
|
//
|
|
//go:embed openapi.yaml
|
|
var OpenAPIYAML []byte
|