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

use strict;

sub setup {

    my($self, @argv) = @_;
    $main::RESULT{setup2} = __PACKAGE__; 
    $self->maybe::next::method(@argv);
}

1;