The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package ThirdTestApp::Cmd::Foo;

BEGIN {
    my $moodel = $ENV{WHICH_MOODEL} || "Moo";
    eval "use $moodel;"; $@ and die $@;
    $moodel->import;
}

sub _build_command_execute_method_name { "run" }

sub run { @_ }

1;