aboutsummaryrefslogtreecommitdiffstats
path: root/golang/restapi/embedded_spec.go
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-05-09 21:46:39 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-05-09 21:46:39 -0700
commit526783fe258d20db0eb600dd63e36c6983f63837 (patch)
tree1df6f93be631598f1783fe2ff2c39b20cddce4de /golang/restapi/embedded_spec.go
parentf8be0451ce47aa1da98dcdba7266804f2cc5173e (diff)
downloadfatcat-526783fe258d20db0eb600dd63e36c6983f63837.tar.gz
fatcat-526783fe258d20db0eb600dd63e36c6983f63837.zip
move generated code
Diffstat (limited to 'golang/restapi/embedded_spec.go')
-rw-r--r--golang/restapi/embedded_spec.go248
1 files changed, 0 insertions, 248 deletions
diff --git a/golang/restapi/embedded_spec.go b/golang/restapi/embedded_spec.go
deleted file mode 100644
index 6a6cf356..00000000
--- a/golang/restapi/embedded_spec.go
+++ /dev/null
@@ -1,248 +0,0 @@
-// Code generated by go-swagger; DO NOT EDIT.
-
-package restapi
-
-// 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": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "schemes": [
- "http"
- ],
- "swagger": "2.0",
- "info": {
- "description": "A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata",
- "title": "fatcat",
- "version": "0.1.0"
- },
- "host": "api.fatcat.wiki",
- "basePath": "/v0",
- "paths": {
- "/creator": {
- "post": {
- "parameters": [
- {
- "name": "body",
- "in": "body",
- "schema": {
- "$ref": "#/definitions/creator_entity"
- }
- }
- ],
- "responses": {
- "201": {
- "description": "created",
- "schema": {
- "$ref": "#/definitions/creator_entity"
- }
- },
- "default": {
- "description": "generic error response",
- "schema": {
- "$ref": "#/definitions/error"
- }
- }
- }
- }
- },
- "/creator/{id}": {
- "get": {
- "responses": {
- "200": {
- "description": "fetch a single creator by id",
- "schema": {
- "$ref": "#/definitions/creator_entity"
- }
- },
- "default": {
- "description": "generic error response",
- "schema": {
- "$ref": "#/definitions/error"
- }
- }
- }
- },
- "parameters": [
- {
- "type": "string",
- "name": "id",
- "in": "path",
- "required": true
- }
- ]
- }
- },
- "definitions": {
- "creator_entity": {
- "type": "object",
- "required": [
- "ident",
- "state"
- ],
- "properties": {
- "ident": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "orcid": {
- "type": "string"
- },
- "redirect": {
- "type": "string"
- },
- "revision": {
- "type": "string"
- },
- "state": {
- "type": "string"
- }
- }
- },
- "error": {
- "type": "object",
- "required": [
- "message"
- ],
- "properties": {
- "message": {
- "type": "string"
- }
- }
- }
- }
-}`))
- FlatSwaggerJSON = json.RawMessage([]byte(`{
- "consumes": [
- "application/json"
- ],
- "produces": [
- "application/json"
- ],
- "schemes": [
- "http"
- ],
- "swagger": "2.0",
- "info": {
- "description": "A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata",
- "title": "fatcat",
- "version": "0.1.0"
- },
- "host": "api.fatcat.wiki",
- "basePath": "/v0",
- "paths": {
- "/creator": {
- "post": {
- "parameters": [
- {
- "name": "body",
- "in": "body",
- "schema": {
- "$ref": "#/definitions/creator_entity"
- }
- }
- ],
- "responses": {
- "201": {
- "description": "created",
- "schema": {
- "$ref": "#/definitions/creator_entity"
- }
- },
- "default": {
- "description": "generic error response",
- "schema": {
- "$ref": "#/definitions/error"
- }
- }
- }
- }
- },
- "/creator/{id}": {
- "get": {
- "responses": {
- "200": {
- "description": "fetch a single creator by id",
- "schema": {
- "$ref": "#/definitions/creator_entity"
- }
- },
- "default": {
- "description": "generic error response",
- "schema": {
- "$ref": "#/definitions/error"
- }
- }
- }
- },
- "parameters": [
- {
- "type": "string",
- "name": "id",
- "in": "path",
- "required": true
- }
- ]
- }
- },
- "definitions": {
- "creator_entity": {
- "type": "object",
- "required": [
- "ident",
- "state"
- ],
- "properties": {
- "ident": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "orcid": {
- "type": "string"
- },
- "redirect": {
- "type": "string"
- },
- "revision": {
- "type": "string"
- },
- "state": {
- "type": "string"
- }
- }
- },
- "error": {
- "type": "object",
- "required": [
- "message"
- ],
- "properties": {
- "message": {
- "type": "string"
- }
- }
- }
- }
-}`))
-}