Governed substrate for autonomous agents: scoped identity (passports), audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
10 lines
278 B
JavaScript
10 lines
278 B
JavaScript
// PES Mini App Routes — public (no auth required)
|
|
// Mounted before auth middleware for Telegram WebApp access
|
|
|
|
import { Router } from 'express';
|
|
import registerAppRoutes from './appController.js';
|
|
|
|
const router = Router();
|
|
registerAppRoutes(router);
|
|
|
|
export default router;
|