10 lines
242 B
JavaScript
10 lines
242 B
JavaScript
import { Router } from 'express';
|
|
import asyncHandler from 'express-async-handler';
|
|
import indexAction from '../controllers/healthcheck/index.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', asyncHandler(indexAction));
|
|
|
|
export default router;
|