mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 21:14:23 +00:00
16 lines
269 B
TypeScript
16 lines
269 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
return {
|
|
data: [
|
|
{
|
|
text: "國內",
|
|
url: "domestic",
|
|
default: true,
|
|
},
|
|
{
|
|
text: "國外",
|
|
url: "global",
|
|
default: false,
|
|
},
|
|
],
|
|
};
|
|
});
|