16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
/**
|
|
* HTTP functionality module
|
|
*/
|
|
|
|
// Export types and models
|
|
export * from './models/http-types.js';
|
|
|
|
// Export submodules (remove port80 export)
|
|
export * from './router/index.js';
|
|
export * from './redirects/index.js';
|
|
// REMOVED: export * from './port80/index.js';
|
|
|
|
// Convenience namespace exports (no more Port80)
|
|
export const Http = {
|
|
// Only router and redirect functionality remain
|
|
}; |