2026-04-18 13:07:12 +08:00
|
|
|
import Router from '@koa/router'
|
2026-04-21 12:35:48 +08:00
|
|
|
import * as ctrl from '../../controllers/hermes/gateways'
|
2026-04-18 13:07:12 +08:00
|
|
|
|
|
|
|
|
export const gatewayRoutes = new Router()
|
|
|
|
|
|
2026-04-21 12:35:48 +08:00
|
|
|
gatewayRoutes.get('/api/hermes/gateways', ctrl.list)
|
|
|
|
|
gatewayRoutes.post('/api/hermes/gateways/:name/start', ctrl.start)
|
|
|
|
|
gatewayRoutes.post('/api/hermes/gateways/:name/stop', ctrl.stop)
|
|
|
|
|
gatewayRoutes.get('/api/hermes/gateways/:name/health', ctrl.health)
|