@codai/cbd
Version:
Codai Better Database - High-Performance Vector Memory System with HPKV-inspired architecture and MCP server
24 lines • 656 B
TypeScript
/**
* ACME Challenge Handler for Let's Encrypt SSL Certificate
* This adds the /.well-known/acme-challenge endpoint to CBD Universal Database
*/
export declare class ACMEChallengeHandler {
private challenges;
/**
* Add an ACME challenge
*/
addChallenge(token: string, response: string): void;
/**
* Remove an ACME challenge
*/
removeChallenge(token: string): void;
/**
* Get challenge response
*/
getChallenge(token: string): string | undefined;
/**
* Setup Express routes for ACME challenges
*/
setupRoutes(app: any): void;
}
//# sourceMappingURL=ACMEChallengeHandler.d.ts.map