feat: Implement healthcheck api endpoint

This commit is contained in:
Faruk AYDIN
2024-02-12 18:46:43 +01:00
parent 8c936a91be
commit f21039d19d
4 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { Router } from 'express';
import indexAction from '../controllers/healthcheck/index.js';
const router = Router();
router.get('/', indexAction);
export default router;