fix return value mod in distance_trees
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / View / TT.pm
CommitLineData
5c9ecf66 1package stemmaweb::View::TT;
dbcf12a6 2
3use strict;
4use warnings;
5
6use base 'Catalyst::View::TT';
7
8__PACKAGE__->config(
9 TEMPLATE_EXTENSION => '.tt',
10 INCLUDE_PATH => [
5c9ecf66 11 stemmaweb->path_to( 'root', 'src' ),
dbcf12a6 12 ],
13 render_die => 1,
14);
15
16=head1 NAME
17
5c9ecf66 18stemmaweb::View::TT - TT View for stemmaweb
dbcf12a6 19
20=head1 DESCRIPTION
21
5c9ecf66 22TT View for stemmaweb.
dbcf12a6 23
24=head1 SEE ALSO
25
5c9ecf66 26L<stemmaweb>
dbcf12a6 27
28=head1 AUTHOR
29
30Tara L Andrews
31
32=head1 LICENSE
33
34This library is free software. You can redistribute it and/or modify
35it under the same terms as Perl itself.
36
37=cut
38
391;