-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
46 lines (46 loc) · 977 Bytes
/
now.json
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
{
"functions": {
"api/story/get-by-id.js": {
"memory": 128
},
"api/story/get-starting-points.js": {
"memory": 128
},
"api/story/new-story.js": {
"memory": 128
},
"api/story/save-chapter.js": {
"memory": 128
},
"api/user/update-or-create.js": {
"memory": 128
}
},
"routes": [
{
"src": "/api/story/get-by-id",
"dest": "/api/story/get-by-id.js",
"methods": ["GET"]
},
{
"src": "/api/story/get-starting-points",
"dest": "/api/story/get-starting-points.js",
"methods": ["GET"]
},
{
"src": "/api/story/new-story",
"dest": "/api/story/new-story.js",
"methods": ["POST"]
},
{
"src": "/api/story/save-chapter",
"dest": "/api/story/save-chapter.js",
"methods": ["POST"]
},
{
"src": "/api/user/update-or-create",
"dest": "/api/user/update-or-create.js",
"methods": ["POST"]
}
]
}