The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
NAME
    Exporter::Auto - Export public functions automatically.

SYNOPSIS
        package Foo;
        use Exporter::Auto;

        sub foo { }

        package main;
        use Foo;
        foo();  # <= this function was exported!

DESCRIPTION
    I'm tired to push function names to @EXPORT. Perl5 should add functions
    automatically!!!111

AUTHOR
    Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>

SEE ALSO
    This module uses magical B::Hooks::EndOfScope. If you think this module
    is too clever, please try Module::Functions instead.

LICENSE
    Copyright (C) Tokuhiro Matsuno <TOKUHIROM @ GMAIL COM

    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.