mirror of
https://github.com/typicode/json-server.git
synced 2025-08-06 15:19:25 +08:00
27 lines
364 B
Plaintext
27 lines
364 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',
|
|
},
|
|
} |