feat(smartproxy): Migrate internal module paths and update HTTP/ACME components for SmartProxy
This commit is contained in:
15
ts/index.ts
15
ts/index.ts
@ -5,7 +5,17 @@
|
||||
// Legacy exports (to maintain backward compatibility)
|
||||
export * from './nfttablesproxy/classes.nftablesproxy.js';
|
||||
export * from './networkproxy/index.js';
|
||||
export * from './port80handler/classes.port80handler.js';
|
||||
// Export port80handler elements selectively to avoid conflicts
|
||||
export {
|
||||
Port80Handler,
|
||||
default as Port80HandlerDefault,
|
||||
HttpError,
|
||||
ServerError,
|
||||
CertificateError
|
||||
} from './port80handler/classes.port80handler.js';
|
||||
// Use re-export to control the names
|
||||
export { Port80HandlerEvents } from './certificate/events/certificate-events.js';
|
||||
|
||||
export * from './redirect/classes.redirect.js';
|
||||
export * from './smartproxy/classes.smartproxy.js';
|
||||
// Original: export * from './smartproxy/classes.pp.snihandler.js'
|
||||
@ -19,4 +29,5 @@ export * from './core/models/common-types.js';
|
||||
// Modular exports for new architecture
|
||||
export * as forwarding from './forwarding/index.js';
|
||||
export * as certificate from './certificate/index.js';
|
||||
export * as tls from './tls/index.js';
|
||||
export * as tls from './tls/index.js';
|
||||
export * as http from './http/index.js';
|
Reference in New Issue
Block a user