/** * OAuth Initialization * * Single entry point for all OAuth setup. Called from handleApplication() * to initialize signing keys and register the OAuth middleware. * * Isolated here so the OAuth subsystem can be extracted into a standalone * plugin package without touching the main index.ts. */ import type { Scope } from '../types.ts'; /** * Initialize the OAuth subsystem. * * 1. Generates or loads the RSA signing key pair * 2. Registers the OAuth HTTP middleware (/.well-known/*, /mcp-auth/*) */ export declare function initOAuth(scope: Scope): Promise; //# sourceMappingURL=init.d.ts.map