# ModA.pm package ModA; use strict; use warnings; use Exporter qw( import ); BEGIN { our @EXPORT = qw( ... ); } use This; use ModB; use That; ... 1;