8 lines
96 B
Perl
8 lines
96 B
Perl
package URI::https;
|
|
require URI::http;
|
|
@ISA=qw(URI::http);
|
|
|
|
sub default_port { 443 }
|
|
|
|
1;
|