summaryrefslogtreecommitdiff
path: root/lib/URI/nntps.pm
blob: 5e054fd383e8d1ee3966f8cb50c1f8f6193391f9 (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.25';

use parent 'URI::nntp';

sub default_port { 563 }

sub secure { 1 }

1;