Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / URI / rsync.pm
CommitLineData
3fea05b9 1package URI::rsync; # http://rsync.samba.org/
2
3# rsync://[USER@]HOST[:PORT]/SRC
4
5require URI::_server;
6require URI::_userpass;
7
8@ISA=qw(URI::_server URI::_userpass);
9
10sub default_port { 873 }
11
121;