minibin/server/controllers/health.js

8 lines
134 B
JavaScript
Raw Normal View History

const healthCheck = async (req, res) => {
return res.json({
uptime: process.uptime(),
});
};
export default { healthCheck };