File: Zoo.pm

package info (click to toggle)
libcatalyst-plugin-authorization-acl-perl 0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 176 kB
  • sloc: perl: 662; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/perl

package ACLTestApp::Controller::Zoo;
use base qw/Catalyst::Controller/;

use strict;
use warnings;

sub moose : Local {
	my ( $self, $c ) = @_;
	$c->res->body("moose");
}

sub elk : Local {
	my ( $self, $c ) = @_;
	$c->res->body("elk ");
}

sub rabbit : Local {
	my ( $self, $c ) = @_;
	$c->res->body("rabbit ");
}

__PACKAGE__;

__END__

=pod

=head1 NAME

ACLTestApp::Controller::Zoo - 

=head1 SYNOPSIS

	use ACLTestApp::Controller::Zoo;

=head1 DESCRIPTION

=cut