From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415 package Poet::App::Command;$Poet::App::Command::VERSION = '0.16';use Poet::Moose;use Cwd qw(getcwd);use strict;use warnings;method initialize_environment () { require Poet::Script; Poet::Script::initialize_with_root_dir( getcwd() );}extends 'MooseX::App::Cmd::Command';1;
package
Poet::App::Command;
$Poet::App::Command::VERSION
=
'0.16'
;
use
Poet::Moose;
Cwd
qw(getcwd)
strict;
warnings;
method initialize_environment () {
require
Poet::Script;
Poet::Script::initialize_with_root_dir( getcwd() );
}
extends
'MooseX::App::Cmd::Command'
1;