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

export default {healthCheck};