summaryrefslogtreecommitdiff
path: root/server/controllers/health.js
blob: 8c443bfd6603fdd202f809e1f25301d3a4fc863e (plain)
1
2
3
4
5
export const healthCheck = async (req, res) => {
  return res.json({
    uptime: process.uptime(),
  });
};