import from final 03_ code without auth
[catagits/catbook-code.git] / lib / LolCatalyst / Lite / View / Service.pm
1 package LolCatalyst::Lite::View::Service;
2
3 use strict;
4 use base 'Catalyst::View::JSON';
5
6 =head1 NAME
7
8 LolCatalyst::Lite::View::Service - Catalyst JSON View
9
10 =head1 SYNOPSIS
11
12 See L<LolCatalyst::Lite>
13
14 =head1 DESCRIPTION
15
16 Catalyst JSON View.
17
18 =head1 AUTHOR
19
20 Freya Jarrett
21
22 =head1 LICENSE
23
24 This library is free software, you can redistribute it and/or modify
25 it under the same terms as Perl itself.
26
27 =cut
28
29 __PACKAGE__->config({ expose_stash => [ qw/lol result/ ] });
30
31 1;