fix failing stemmaweb stub test
[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',
9ca77245 10 ENCODING => 'utf-8',
dbcf12a6 11 render_die => 1,
12);
13
14=head1 NAME
15
5c9ecf66 16stemmaweb::View::TT - TT View for stemmaweb
dbcf12a6 17
18=head1 DESCRIPTION
19
5c9ecf66 20TT View for stemmaweb.
dbcf12a6 21
22=head1 SEE ALSO
23
5c9ecf66 24L<stemmaweb>
dbcf12a6 25
26=head1 AUTHOR
27
28Tara L Andrews
29
30=head1 LICENSE
31
32This library is free software. You can redistribute it and/or modify
33it under the same terms as Perl itself.
34
35=cut
36
371;