File: MyURI.pm

package info (click to toggle)
libcatalyst-plugin-smarturi-perl 0.041-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 285; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
package TestApp::Controller::MyURI;

use parent 'Catalyst::Controller';

sub test_my_uri : Global {
    my ($self, $c) = @_;
    $c->res->output($c->uri_for('/dummy')->mtfnpy)
}

1;