mirror of
https://github.com/TheBinaryNinja/tvapp2.git
synced 2026-06-12 10:35:41 -04:00
7 lines
270 B
JavaScript
7 lines
270 B
JavaScript
import { Router } from 'express';
|
|
import { isConnected } from '../db.js';
|
|
export const healthRouter = Router();
|
|
healthRouter.get('/', (_req, res) => {
|
|
res.json({ ok: true, mongo: isConnected() ? 'connected' : 'disconnected' });
|
|
});
|
|
//# sourceMappingURL=health.js.map
|