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

use strict;
use warnings;

BEGIN
{
    my $moodel = $ENV{WHICH_MOODEL} || "Moo";
    eval "use $moodel;";
    $@ and die $@;
    $moodel->import;
}
use MooX::Cmd
  with_config_from_file => 1,
  with_abbrev_cmds      => 1;

sub execute { @_ }

1;