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