File: TestApp.pm

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

use strict;
use Catalyst qw/I18N/;
use base qw/Catalyst/;

__PACKAGE__->config( name => 'TestApp', root => '/some/dir' );

__PACKAGE__->setup;

1;