Created
May 25, 2023 22:00
-
-
Save furenku/e965584291bf9f9fd6e25d9b737fb391 to your computer and use it in GitHub Desktop.
json server db
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"messages": [ | |
{ | |
"id": 1, | |
"user": 1, | |
"message": "Excepteur et laboris cillum cupidatat deserunt ullamco excepteur duis aute sunt" | |
}, | |
{ | |
"id": 2, | |
"user": 1, | |
"message": "Excepteur adipisicing in adipisicing fugiat labore dolore eiusmod proident cupidatat commodo laboris ullamco consequat." | |
}, | |
{ | |
"id": 3, | |
"user": 1, | |
"message": "Esse nisi veniam irure in elit amet aliqua." | |
}, | |
{ | |
"user": 1, | |
"message": "Consectetur minim sunt incididunt quis anim.", | |
"id": 4 | |
}, | |
{ | |
"user": 1, | |
"message": "Pariatur aute ut culpa veniam sit excepteur culpa eiusmod excepteur eiusmod non officia duis laborum.", | |
"id": 5 | |
}, | |
{ | |
"user": 1, | |
"message": "Sit labore laboris laborum minim officia.", | |
"id": 6 | |
}, | |
{ | |
"user": 1, | |
"message": "Velit in magna et eu aliqua occaecat id irure sit.", | |
"id": 7 | |
}, | |
{ | |
"user": 1, | |
"message": "Exercitation mollit minim elit nulla id laboris voluptate voluptate minim ex do sit.", | |
"id": 8 | |
} | |
], | |
"users": [ | |
{ | |
"id": 1, | |
"username": "User 1" | |
}, | |
{ | |
"id": 2, | |
"username": "User 2" | |
}, | |
{ | |
"id": 3, | |
"username": "User 3" | |
}, | |
{ | |
"username": "User 4", | |
"id": 4 | |
}, | |
{ | |
"username": "User 5", | |
"id": 5 | |
}, | |
{ | |
"username": "User 6", | |
"id": 6 | |
}, | |
{ | |
"username": "User 7", | |
"id": 7 | |
}, | |
{ | |
"username": "User 8", | |
"id": 8 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment