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