Files
server/usr/share/perl5/URI/snews.pm
2026-01-07 20:52:11 +01:00

15 lines
172 B
Perl

package URI::snews; # draft-gilman-news-url-01
use strict;
use warnings;
our $VERSION = '5.27';
use parent 'URI::news';
sub default_port { 563 }
sub secure { 1 }
1;