Heeere's Plack/PSGI!
[plack-app-gruntmaster.git] / app.psgi
1 #!/usr/bin/perl -w
2 use v5.14;
3
4 use Plack::Builder;
5 use Plack::App::Gruntmaster;
6
7 builder {
8 enable 'Static', path => qr,/static/,, pass_through => 1;
9 enable 'Log4perl', category => 'plack', conf => 'log.conf';
10 Plack::App::Gruntmaster->to_app
11 }
This page took 0.025325 seconds and 5 git commands to generate.