Skip to content
Permalink
Browse files
json db
  • Loading branch information
enem2 committed Sep 13, 2021
1 parent 1e67472 commit 3b644da8cad69be227bd916ed0d0cc8975c6ed09
Show file tree
Hide file tree
Showing 3 changed files with 1,440 additions and 0 deletions.
62 db.json
@@ -0,0 +1,62 @@
{
"users":[
{
"id":"1",
"name":"name1",
"username":"user1",
"email":"email@email.com",
"password":"pass",
"accountBalance":"100",

"diamond":"1",
"ruby":"2",
"emerald":"1"


},
{
"id":"2",
"name":"name2",
"username":"username2",
"email":"email2@email.com",
"password":"pass",
"accountBalance":"300",

"diamond":"2",
"ruby":"2",
"emerald":"2"


},
{
"id":"3",
"name":"nameUser3",
"username":"username3",
"email":"email3@email.com",
"password":"pass",
"accountBalance":"1500",

"diamond":"5",
"ruby":"3",
"emerald":"4"

}
],
"jewels":[
{
"id":1,
"name":"diamond",
"value":200
},
{
"id":2,
"name":"ruby",
"value":150
},
{
"id":3,
"name":"emerald",
"value":100
}
]
}

0 comments on commit 3b644da

Please sign in to comment.