Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
use v5.12.5;
our $VERSION = '1.16.0'; # VERSION
sub create {
my ( $class, $type ) = @_;
unless ($type) {
$type = "Default";
}
my $class_name = "Rex::Interface::Executor::$type";
eval "use $class_name;";
if ($@) { die("Error loading file interface $type.\n$@"); }
return $class_name->new;
}
1;