File: View.pm

package info (click to toggle)
libcatalyst-action-rest-perl 1.21-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 476 kB
  • sloc: perl: 1,750; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Catalyst::Action::Deserialize::View;
$Catalyst::Action::Deserialize::View::VERSION = '1.21';
use Moose;
use namespace::autoclean;

extends 'Catalyst::Action';

sub execute {
    return 1;
}

__PACKAGE__->meta->make_immutable;

1;