mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 07:41:02 +08:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
const userToken = getCookie(event, "token");
|
|
return {
|
|
token: userToken,
|
|
};
|
|
});
|