On 2022-03-13 18:08, Diab Jerius via module-authors wrote:
require Exporter; our @ISA = qw( Exporter ); our @EXPORT = qw( foo )
I prefer this way: # -------------------------------------- # Exports use Exporter qw( import ); our @EXPORT = qw( foo ); our @EXPORT_OK = qw( ); our %EXPORT_TAGS = ( all => [ @EXPORT, @EXPORT_OK ], ); This automatically creates a tag for `:all`.