mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
14 lines
516 B
TypeScript
14 lines
516 B
TypeScript
export default defineEventHandler(async(event) => {
|
|
const body = await readBody(event);
|
|
return {
|
|
body: body,
|
|
title: "News Org 1",
|
|
slug: "taisounds",
|
|
website: "https://www.taisounds.com.tw",
|
|
description: "wah wah wah wah wah wah I dont fucking care",
|
|
facebook: "https://www.facebook.com/taisounds",
|
|
logoUrl: "https://cdn.discordapp.com/avatars/918723093646684180/4eecc27ac05ee8a701fa167808610c7a.jpg",
|
|
}
|
|
})
|
|
|
|
|