=encoding utf8 =head1 Name Mo::exporter - Export the @EXPORT list =head1 Synopsis package MyMo; # use Mo qw[exporter import]; package SomeClass; use MyMo; has foo => (builder => 'build_foo'); =head1 Description If you are defining your own Mo class for a project, and you want it to always use a default set of features, you should add C to the end of the list. Then by calling: use MyMo; you get the default set: C and C. If you just want C, do this: use MyMo 'default'; If you want no features for a particular class, use: use MyMo ''; =head1 Note This feature is probably not useful, and possibly problematic, outside of L usage.