package My::Module; BEGIN { use Exporter (); use vars qw(@ISA @EXPORT @EXPORT_OK); @ISA = qw(Exporter); @EXPORT = qw(); @EXPORT_OK = qw(testsub); } use strict; use Apache::Reload; sub testsub { return "module subroutine"; } 1;