#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
package
Rex::Interface::Shell::Ash;
use
v5.12.5;
use
warnings;
our
$VERSION
=
'1.14.2'
;
# VERSION
sub
new {
my
$class
=
shift
;
my
$proto
=
ref
(
$class
) ||
$class
;
my
$self
=
$proto
->SUPER::new(
@_
);
bless
(
$self
,
$class
);
return
$self
;
}
1;