Governed substrate for autonomous agents: scoped identity (passports), audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
15 lines
509 B
JavaScript
15 lines
509 B
JavaScript
// ============================================================
|
|
// PES API Routes — CRM ↔ PES Bridge
|
|
// ============================================================
|
|
|
|
import { Router } from 'express';
|
|
import registerStatusRoutes from './statusController.js';
|
|
import registerEventRoutes from './eventController.js';
|
|
import registerDataRoutes from './dataController.js';
|
|
|
|
const router = Router();
|
|
registerStatusRoutes(router);
|
|
registerEventRoutes(router);
|
|
registerDataRoutes(router);
|
|
|
|
export default router;
|