remove unused folder

This commit is contained in:
wing328 2017-05-30 22:07:53 +08:00
parent 51f9874da6
commit 9282098d72
2 changed files with 0 additions and 97 deletions

View File

@ -1,67 +0,0 @@
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "SDK Unit Testing - File Downloading"
},
"schemes": [
"http"
],
"host": "localhost:3000",
"basePath": "/unittesting",
"paths": {
"/request/file_uploading": {
"get": {
"operationId": "file_uploading",
"tags": [
"Request"
],
"parameters": [
{"name": "f1",
"in": "formData",
"type": "string",
"format": "binary",
"required": true
},
{"name": "f2",
"in": "formData",
"type": "string",
"format": "binary",
"required": false
}
],
"consumes": [
"multipart/form-data"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
}
}
}
},
"/response/file_downloading": {
"get": {
"operationId": "file_downloading",
"tags": [
"Response"
],
"produces": [
"multipart/form-data"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string",
"format": "binary"
}
}
}
}
}
}
}

View File

@ -1,30 +0,0 @@
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "SDK Unit Testing - File Downloading"
},
"schemes": [
"http"
],
"host": "localhost:3000",
"basePath": "/unittesting",
"paths": {
"/response/file_downloading": {
"get": {
"operationId": "file_downloading",
"tags": [
"Response"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "file"
}
}
}
}
}
}
}