summaryrefslogtreecommitdiff
path: root/lib/URI/nntps.pm
blob: e3b539e89fe6c007fd374a1bcc2763e05f1fa5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package URI::nntps;

use strict;
use warnings;

our $VERSION = '5.20';

use parent 'URI::nntp';

sub default_port { 563 }

sub secure { 1 }

1;