in reply to Module Loading via Exporter doubt.
For the sake of completeness, you can just grab Exporter::import without inheriting it:
package Foo; require Exporter; *import = \&Exporter::import;
Update: I just learned from tilly's latest meditation that there is now a simpler way to achieve the same end result:
package Foo; use Exporter 'import';
the lowliest monk
|
|---|