2025-04-27 07:49:33 -04:00

8 lines
96 B
Perl

package URI::https;
require URI::http;
@ISA=qw(URI::http);
sub default_port { 443 }
1;