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

const router = Express.Router();

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

export default router;