diff options
author | franck cuny <franck@lumberjaph.net> | 2009-11-24 11:47:05 +0100 |
---|---|---|
committer | franck cuny <franck@lumberjaph.net> | 2009-11-24 11:47:05 +0100 |
commit | 45e4fda71945954b4723ee97cbe409215abff7fc (patch) | |
tree | 6980e4ee0b247b78b1e98f0c97f5816b5042f67f /lib/MooseX/Net/API | |
parent | initial commit (diff) | |
download | moosex-net-api-45e4fda71945954b4723ee97cbe409215abff7fc.tar.gz |
basic ideas
Diffstat (limited to 'lib/MooseX/Net/API')
-rw-r--r-- | lib/MooseX/Net/API/Test.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/MooseX/Net/API/Test.pm b/lib/MooseX/Net/API/Test.pm new file mode 100644 index 0000000..2f2e428 --- /dev/null +++ b/lib/MooseX/Net/API/Test.pm @@ -0,0 +1,13 @@ +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; |