mirror of
https://github.com/typicode/json-server.git
synced 2026-03-13 09:35:37 +08:00
28 lines
365 B
Plaintext
28 lines
365 B
Plaintext
{
|
|
posts: [
|
|
{
|
|
id: "1",
|
|
title: "a title",
|
|
},
|
|
{
|
|
id: "2",
|
|
title: "another title",
|
|
},
|
|
],
|
|
comments: [
|
|
{
|
|
id: "1",
|
|
text: "a comment about post 1",
|
|
postId: "1",
|
|
},
|
|
{
|
|
id: "2",
|
|
text: "another comment about post 1",
|
|
postId: "1",
|
|
},
|
|
],
|
|
profile: {
|
|
name: "typicode",
|
|
},
|
|
}
|