Simplify health endpoint response

This commit is contained in:
Alexa Amundson
2025-11-22 18:27:52 -06:00
parent 51698aecfe
commit 59322269d0

View File

@@ -2,6 +2,5 @@ export default function handler(req, res) {
res.status(200).json({ res.status(200).json({
status: 'ok', status: 'ok',
service: 'docs', service: 'docs',
timestamp: new Date().toISOString(),
}); });
} }