summaryrefslogtreecommitdiff
path: root/lib/URI/nntps.pm
blob: 520e66a669c685037988f08ffec99e44d057955c (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.19';

use parent 'URI::nntp';

sub default_port { 563 }

sub secure { 1 }

1;