-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsoa.json
More file actions
executable file
·60 lines (60 loc) · 1.29 KB
/
Copy pathtsoa.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"entryFile": "./src/controllers/index.ts",
"spec": {
"specMerging": "recursive",
"outputDirectory": "./build/swagger",
"spec": {
"paths": {
"/files/download": {
"post": {
"produces": [
"image/png"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string",
"format": "binary"
}
}
}
}
},
"/files/upload": {
"post": {
"consumes": [
"multipart/form-data"
],
"parameters": [
{
"in": "formData",
"name": "tsoaUploadFile",
"required": true,
"type": "file"
}
]
}
}
}
}
},
"tags":[
{
"name": "User",
"description": "Operations about users",
"externalDocs": {
"description": "Find out more about users",
"url": "http://swagger.io"
}
}
]
,
"routes": {
"routesDir": "./build",
"basePath": "/service/",
"authenticationModule": "./src/auth.ts",
"middleware": "express",
"iocModule": "./src/ioc"
}
}