Socialify

Folder ..

Viewing healthRoutes.ts
7 lines (5 loc) • 185.0 B

1
2
3
4
5
6
7
8
import { Router } from 'express';
import { getHealthStatus } from '../controllers/healthController';

const router = Router();

router.get('/', getHealthStatus);

export default router;