deckhearth/pages/api/health.js

7 lines
181 B
JavaScript
Raw Permalink Normal View History

2025-07-23 10:21:29 -04:00
export default function handler(req, res) {
res.status(200).json({
status: 'ok',
message: 'Clean Next.js API is working!',
timestamp: new Date().toISOString()
2025-07-23 10:21:29 -04:00
});
}