-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
33 lines (32 loc) · 896 Bytes
/
db.json
File metadata and controls
33 lines (32 loc) · 896 Bytes
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
{
// "posts": [
// {
// "postId": 1,
// "userNickname" : "nick",
// "title": "제목1",
// "imageUrl":"/images/cancle.png",
// "likesNum" : 3,
// "commentsNum" : 1
// },
// {
// "postId": 2,
// "userNickname" : "candice",
// "title": "제목2",
// "imageUrl":"/images/cancle.png",
// "likesNum" : 3,
// "commentsNum" : 1
// },
// {
// "postId": 3,
// "userNickname" : "candice",
// "title": "제목2",
// "imageUrl":"/images/cancle.png",
// "likesNum" : 3,
// "commentsNum" : 1
// }
// ],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}