Files
automatisch/packages/backend/src/routes/healthcheck.js
2024-02-26 01:03:15 +01:00

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;