| Hailo documentation | Contained in the Hailo distribution. |
Hailo::Role::Arguments - A role which adds an 'arguments' attribute
argumentsÆvar Arnfjörð Bjarmason <avar@cpan.org>
Copyright 2010 Ævar Arnfjörð Bjarmason.
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Hailo documentation | Contained in the Hailo distribution. |
package Hailo::Role::Arguments; BEGIN { $Hailo::Role::Arguments::AUTHORITY = 'cpan:AVAR'; } BEGIN { $Hailo::Role::Arguments::VERSION = '0.69'; } use 5.010; use Any::Moose '::Role'; use namespace::clean -except => 'meta'; has arguments => ( isa => 'HashRef[Str]', is => 'ro', documentation => "Arguments passed from Hailo", auto_deref => 1, ); 1;