The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
sub new {
my ( $class, $mountpoint, $root ) = @_;
return bless {
%$root,
'parent' => $mountpoint->{'parent'}
},
ref $root;
}
1;