Bump version and update Changes
[app-web-oof.git] / app.psgi
1 #!/usr/bin/perl
2 use 5.014000;
3 use warnings;
4
5 use App::Web::Oof;
6 use Plack::App::File;
7 use Plack::Builder;
8
9 builder {
10 mount '/static/' => Plack::App::File->new(root => 'static')->to_app,
11 mount '/' => App::Web::Oof::app,
12 }
This page took 0.0224 seconds and 4 git commands to generate.