mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 00:01:03 +08:00
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
const body = await readBody(event);
|
|
return {
|
|
0: {
|
|
id: "1",
|
|
image: "whatever",
|
|
tags: [],
|
|
title: "三立新聞",
|
|
lean: "left",
|
|
score: "40",
|
|
},
|
|
};
|
|
});
|