-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtodolist.json
59 lines (59 loc) · 994 Bytes
/
todolist.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
{
"todo_list": [
{
"task": "go out with the dog",
"completed": true,
"id": 1
},
{
"task": "do the laundryg",
"completed": true,
"id": 2
},
{
"task": "throw out the garbage",
"completed": true,
"id": 3
},
{
"task": "clean the dishes",
"completed": false,
"id": 4
},
{
"task": "clean the dishes",
"completed": true,
"id": 5
},
{
"task": "clean the dishes!",
"completed": false,
"id": 6
},
{
"task": "do homework",
"completed": false,
"id": 7
},
{
"task": "clean the dishes 8",
"completed": false,
"id": 8
},
{
"task": "clean the dishe ghgs 9",
"completed": false,
"id": 9
},
{
"task": "clean the dishes 11",
"completed": false,
"id": 10
},
{
"task": "go out with the dog",
"completed": true,
"id": 11
}
]
}