Files
Hermes-ui/packages/server/src/routes/health.ts
T

9 lines
227 B
TypeScript
Raw Normal View History

import Router from '@koa/router'
import * as ctrl from '../controllers/health'
export const healthRoutes = new Router()
healthRoutes.get('/health', ctrl.healthCheck)
export { startVersionCheck } from '../controllers/health'