summaryrefslogtreecommitdiff
path: root/server/routes/health.js
blob: bd48e52b8492dfe7e64bffb5db8e7e26cc2d84d1 (plain)
1
2
3
4
5
6
7
8
import Express from 'express';
import health from '../controllers/health.js';

const router = Express.Router();

router.get('/health', health.healthCheck);

export default router;