14 lines
592 B
TypeScript
14 lines
592 B
TypeScript
/**
|
|
* Proxy implementations module
|
|
*/
|
|
|
|
// Export SmartProxy with selective imports to avoid conflicts
|
|
export { SmartProxy } from './smart-proxy/index.js';
|
|
export { SharedRouteManager as SmartProxyRouteManager } from '../core/routing/route-manager.js';
|
|
export * from './smart-proxy/utils/index.js';
|
|
// Export smart-proxy models except IAcmeOptions
|
|
export type { ISmartProxyOptions, IConnectionRecord, IRouteConfig, IRouteMatch, IRouteAction, IRouteTls, IRouteContext } from './smart-proxy/models/index.js';
|
|
|
|
// Export NFTables proxy (no conflicts)
|
|
export * from './nftables-proxy/index.js';
|