The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Model::WebService::CRUST - Catalyst model class for making REST queries using WebService::CRUST

SYNOPSIS

Create a controller using the helper:

  script/myapp_create.pl model MyService WebService::CRUST

Or make your own:

  package MyAPP::Model::MyService;
  
  use strict;
  use base 'Catalyst::Model::WebService::CRUST';
  
  # Optionally set a base or other WebService::CRUST options
  __PACKAGE__->config(
      base => 'http://something/'
  );
  
  1;

Then in your Catalyst app:

  $c->stash{result} = $c->model('MyService')->get('foo');

SEE ALSO

WebService::CRUST, Catalyst::Model

AUTHOR

Chris Heschong <chris@wiw.org>