2025-05-09 17:00:27 +00:00
|
|
|
/**
|
|
|
|
* HTTP functionality module
|
|
|
|
*/
|
|
|
|
|
2025-05-09 17:10:19 +00:00
|
|
|
// 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-09 17:10:19 +00:00
|
|
|
|
2025-05-18 15:38:07 +00:00
|
|
|
// Convenience namespace exports (no more Port80)
|
2025-05-09 17:10:19 +00:00
|
|
|
export const Http = {
|
2025-05-18 15:38:07 +00:00
|
|
|
// Only router and redirect functionality remain
|
|
|
|
};
|