-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
46 lines (46 loc) · 1.13 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
{
"quotes": [
{
"id": 1,
"quote": "I would rather be a little nobody, than to be an evil somebody",
"author": "Abraham Lincoln",
"category": "Inspirational",
"likes": 2
},
{
"id": 2,
"quote": "In the middle of difficulty lies opportunity",
"author": "Albert Einstein",
"category": "Motivational",
"likes": 0
},
{
"id": 3,
"quote": "Courage is not having the strength to go on; it is going on when you don't have the strength",
"author": "Theodore Roosevelt",
"category": "Courage",
"likes": 0
},
{
"id": 4,
"quote": "“Always forgive your enemies - nothing annoys them so much",
"author": "Oscar Wilde",
"category": "Forgiveness",
"likes": 0
},
{
"id": 5,
"quote": "Love the life you live, live the life you love",
"author": "Bob Marley",
"category": "Love",
"likes": 0
},
{
"id": 6,
"quote": "Excellence is not an exception, it is a prevailing attitude",
"author": "Colin Powell",
"category": "Excellence",
"likes": 0
}
]
}