-
Notifications
You must be signed in to change notification settings - Fork 2
/
db.json
59 lines (59 loc) · 1.19 KB
/
db.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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"todos": [
{
"title": "Cook",
"description": "Cook steak",
"id": "GLGN0VP",
"finished": true
},
{
"title": "Pimp my Tesla",
"description": "Customize Tesla",
"id": "xBwkYid",
"finished": true
},
{
"title": "Coffee",
"description": "Latte",
"id": "-WG7nJg",
"finished": true
},
{
"title": "Coffee break",
"description": "Espresso",
"id": "At_SvVt",
"finished": false
},
{
"title": "Kotlin",
"description": "This is kotlin!!!",
"id": "E-HMm1j"
}
],
"foods": [
{
"name": "Cook Thai",
"description": "This is how you make Thai food!",
"id": "GLGN0VP",
"finished": true
},
{
"name": "Cook Indian",
"description": "This is how you make Indian food!",
"id": "xBwkYid",
"finished": true
},
{
"name": "Cook Vietnamese",
"description": "This is how you make Vietnamese food!",
"id": "-WG7nJg",
"finished": true
},
{
"name": "Cook Norwegian",
"description": "This is how you make Norwegian food!",
"id": "At_SvVt",
"finished": false
}
]
}