package Foo;
use strict;
use base 'Exporter';
our @EXPORT_OK = qw(foo bar);

sub foo {}
sub bar {}

1;