The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package IM::Engine::Plugin;
use Moose;
use MooseX::StrictConstructor;

with 'IM::Engine::HasEngine';

sub post_initialization { }

__PACKAGE__->meta->make_immutable;
no Moose;

1;