The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TM::Workbench::Plugin;                    # the mother of all plugins

sub new {
    my $class = shift;
    return bless {}, $class;
}

1;