use strict; use warnings; package SpecialMethod; BEGIN { our @EXPORT = qw( special_method ); require Exporter; *import = \&Exporter::import; } use ... use ... sub special_method { ... } 1;