X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FDeserialize%2FView.pm;h=a0ea2c856db4f9124462212df47aa726814d8fb7;hb=40de934ce925aa9fbf1d2fa15846b5c0de9ec790;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..a0ea2c8 100644 --- a/lib/Catalyst/Action/Deserialize/View.pm +++ b/lib/Catalyst/Action/Deserialize/View.pm @@ -1,12 +1,17 @@ package Catalyst::Action::Deserialize::View; -use strict; -use warnings; +use Moose; +use namespace::autoclean; -use base 'Catalyst::Action'; +extends 'Catalyst::Action'; + +our $VERSION = '1.01'; +$VERSION = eval $VERSION; sub execute { return 1; } +__PACKAGE__->meta->make_immutable; + 1;