X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FDeserialize%2FView.pm;h=11dd545c30cdb05a074c08c0e708451e39c4b253;hb=f789417d081b4d519ded07eec046c0b01661e25d;hp=e66b6e3fb670e83f7b0588364f6adbefa60dbf95;hpb=07682cbc3e3c974a32b52eec5cc8c7035a5c12ed;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/Deserialize/View.pm b/lib/Catalyst/Action/Deserialize/View.pm index e66b6e3..11dd545 100644 --- a/lib/Catalyst/Action/Deserialize/View.pm +++ b/lib/Catalyst/Action/Deserialize/View.pm @@ -1,12 +1,14 @@ package Catalyst::Action::Deserialize::View; -use strict; -use warnings; +use Moose; +use namespace::autoclean; -use base 'Catalyst::Action'; +extends 'Catalyst::Action'; sub execute { return 1; } +__PACKAGE__->meta->make_immutable; + 1;