From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
our @EXPORT_OK = qw/mirror_url/ ;
my $mirror_dir = Path::Tiny->new( $FindBin::Bin )->child( 'testdata' , 'mirrors' );
sub mirror_url {
my $name = shift ;
return 'file://' . $mirror_dir ->child( $name ); }
1;
|