mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 21:14:23 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
export default defineEventHandler(async () => {
|
|
return {
|
|
status: "healthy",
|
|
timestamp: new Date().toISOString(),
|
|
version: process.env.npm_package_version || "unknown",
|
|
};
|
|
});
|