db.json
1.01 KB
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
60
{
"users": [
{
"ID": "1",
"password": "1",
"age": "1",
"gender": "male",
"height": "1",
"weight": "1"
},
{
"ID": "harry",
"password": "1234",
"age": "20",
"gender": "male",
"height": "160",
"weight": "60"
},
{
"ID": "yoon",
"password": "9999",
"age": "20",
"gender": "male",
"height": "170",
"weight": "70"
},
{
"ID": "steve",
"password": "9876",
"age": "25",
"gender": "male",
"height": "175",
"weight": "70"
},
{
"ID": "jane",
"password": "1111",
"age": "20",
"gender": "female",
"height": "165",
"weight": "60"
},
{
"ID": "soso",
"password": "soso",
"age": "20",
"gender": "female",
"height": "160",
"weight": "55"
},
{
"ID": "potter",
"password": "7777",
"age": "21",
"gender": "male",
"height": "170",
"weight": "65"
}
]
}