godcrm/backend/routes/v3/bdd.js
GOD CRM Release f89e074dd1
Some checks failed
CI / Lint / Typecheck / Test / Build (push) Has been cancelled
CI / PostgreSQL Integration Tests (push) Has been cancelled
GOD CRM — public scrubbed snapshot
Governed substrate for autonomous agents: scoped identity (passports),
audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
2026-08-10 04:01:45 +03:00

16 lines
704 B
JavaScript

/**
* BDD routes — thin re-export wrapper.
* All logic has been refactored into ./bdd/ submodules (tests, acceptance,
* specs, enrollments, transitions, escalation, events).
*
* This file preserves backward compatibility for server.js (`import bddRoutesV3
* from './routes/v3/bdd.js'`), scripts/snapshots/smoke-c4-verify.mjs (which
* imports the default router and walks its stack), and the migration script
* scripts/encrypt-totp-secrets.js (which may import the named helpers).
*/
// Default export: the Express router
export { default } from './bdd/index.js';
// Named exports (backward compatibility with original line 616)
export { encryptSecret, decryptSecret } from './bdd/index.js';