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