mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
373 B
TypeScript
17 lines
373 B
TypeScript
/**
|
|
* Health check routes
|
|
*/
|
|
|
|
import { Router } from 'express';
|
|
import { createIndexHandler } from './routes/index.js';
|
|
import { createDetailedHandler } from './routes/detailed.js';
|
|
|
|
export function createHealthRoutes(): Router {
|
|
const router = Router();
|
|
|
|
router.get('/', createIndexHandler());
|
|
router.get('/detailed', createDetailedHandler());
|
|
|
|
return router;
|
|
}
|