bcgov/citz-imb-staff-purchasing-reimbursement

View on GitHub
api/routes/open/health-router.ts

Summary

Maintainability
A
0 mins
Test Coverage
import express from 'express';
import { healthCheck } from '../../controllers/health-api-controller';

const router = express.Router();

// Health-check endpoints
router.route('/health').get(healthCheck);

export default router;