| Catalyst-Model-Net-Amazon documentation | Contained in the Catalyst-Model-Net-Amazon distribution. |
Catalyst::Helper::Model::Net::Amazon - Helper for Net::Amazon Catalyst models
script/myapp_create.pl model ModelName Net::Amazon amazon_secret_token
Use this module to set up a new Catalyst::Model::Net::Amazon model for your Catalyst application.
ModelName is the short name for the Model class being generated (eg.
Net::Amazon)
token is your Amazon Web Services account's Access Key. For more
information see: http://aws.amazon.com/s3
Catalyst, Catalyst::Helper, Catalyst::Model::Net::Amazon
Please report any bugs or feature requests to http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Model-Net-Amazon.
Carl Franks, cfranks@cpan.org
Copyright (C) 2007 by Carl Franks
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| Catalyst-Model-Net-Amazon documentation | Contained in the Catalyst-Model-Net-Amazon distribution. |
package Catalyst::Helper::Model::Net::Amazon; use strict; use warnings; use Carp qw/ croak /; our $VERSION = '0.01001'; sub mk_compclass { my ( $self, $helper, $token ) = @_; $helper->{token} = $token; $helper->render_file( 'net_amazon_class', $helper->{file} ); } 1;
__DATA__
1;