2025-05-09 17:00:27 +00:00
|
|
|
/**
|
|
|
|
* Port 80 handling
|
|
|
|
*/
|
2025-05-09 17:10:19 +00:00
|
|
|
|
|
|
|
// Export the main components
|
|
|
|
export { Port80Handler } from './port80-handler.js';
|
|
|
|
export { ChallengeResponder } from './challenge-responder.js';
|
|
|
|
|
|
|
|
// Export backward compatibility interfaces and types
|
|
|
|
export {
|
|
|
|
HttpError as Port80HandlerError,
|
|
|
|
CertificateError as CertError
|
|
|
|
} from '../models/http-types.js';
|