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