blob: 2f2e4286e09c540f91f349a60fcb5b2207bbb04f (
plain) (
tree)
|
|
package MooseX::Net::API::Test;
use Moose::Exporter;
Moose::Exporter->setup_import_methods( with_caller => [qw/test_api_method/] );
sub test_api_method {
my $caller = shift;
my $name = shift;
my %options = @_;
}
1;
|