mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run
6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
const userToken = getCookie(event, "token");
|
|
return {
|
|
token: userToken,
|
|
};
|
|
});
|