remove hardcoded version strings
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Deserialize / View.pm
CommitLineData
9a76221e 1package Catalyst::Action::Deserialize::View;
2
930013e6 3use Moose;
4use namespace::autoclean;
9a76221e 5
930013e6 6extends 'Catalyst::Action';
9a76221e 7
cc188065 8# VERSION
f465980c 9
9a76221e 10sub execute {
11 return 1;
12}
13
24748286 14__PACKAGE__->meta->make_immutable;
15
07682cbc 161;