add a $VERSION to every module
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Deserialize / View.pm
index 224886b..1fba5c6 100644 (file)
@@ -1,12 +1,15 @@
 package Catalyst::Action::Deserialize::View;
 
-use strict;
-use warnings;
+use Moose;
+use namespace::autoclean;
 
-use base 'Catalyst::Action';
+extends 'Catalyst::Action';
+
+our $VERSION = '0.81';
+$VERSION = eval $VERSION;
 
 sub execute {
     return 1;
 }
 
-1;
\ No newline at end of file
+1;