smartproxy/ts/http/index.ts

16 lines
396 B
TypeScript
Raw Normal View History

2025-05-09 17:00:27 +00:00
/**
* HTTP functionality module
*/
// Export types and models
export * from './models/http-types.js';
2025-05-18 15:38:07 +00:00
// Export submodules (remove port80 export)
2025-05-09 17:00:27 +00:00
export * from './router/index.js';
export * from './redirects/index.js';
2025-05-18 15:38:07 +00:00
// REMOVED: export * from './port80/index.js';
2025-05-18 15:38:07 +00:00
// Convenience namespace exports (no more Port80)
export const Http = {
2025-05-18 15:38:07 +00:00
// Only router and redirect functionality remain
};