zrok/rest_zrok_server/embedded_spec.go

111 lines
2.1 KiB
Go
Raw Normal View History

2022-07-22 16:52:36 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package rest_zrok_server
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
)
var (
// SwaggerJSON embedded version of the swagger document used at generation time
SwaggerJSON json.RawMessage
// FlatSwaggerJSON embedded flattened version of the swagger document used at generation time
FlatSwaggerJSON json.RawMessage
)
func init() {
SwaggerJSON = json.RawMessage([]byte(`{
"consumes": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"produces": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"schemes": [
"http"
],
"swagger": "2.0",
"info": {
"description": "zrok client access",
"title": "zrok",
2022-07-22 16:52:36 +02:00
"version": "1.0.0"
},
"paths": {
"/": {
"get": {
"tags": [
"metadata"
],
"responses": {
"200": {
"description": "retrieve the current server version",
2022-07-22 16:52:36 +02:00
"schema": {
"$ref": "#/definitions/version"
}
}
}
}
}
},
"definitions": {
"version": {
"type": "object",
"properties": {
"version": {
"type": "string",
"minLength": 1
}
}
}
}
}`))
FlatSwaggerJSON = json.RawMessage([]byte(`{
"consumes": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"produces": [
2022-07-22 17:45:37 +02:00
"application/zrok.v1+json"
2022-07-22 16:52:36 +02:00
],
"schemes": [
"http"
],
"swagger": "2.0",
"info": {
"description": "zrok client access",
"title": "zrok",
2022-07-22 16:52:36 +02:00
"version": "1.0.0"
},
"paths": {
"/": {
"get": {
"tags": [
"metadata"
],
"responses": {
"200": {
"description": "retrieve the current server version",
2022-07-22 16:52:36 +02:00
"schema": {
"$ref": "#/definitions/version"
}
}
}
}
}
},
"definitions": {
"version": {
"type": "object",
"properties": {
"version": {
"type": "string",
"minLength": 1
}
}
}
}
}`))
}