7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { Router } from 'express';
|
|
import { healthRouter } from './health.js';
|
|
|
|
export const apiRouter = Router();
|
|
|
|
apiRouter.use(healthRouter);
|