Initial commit
[app-web-comstock.git] / app.psgi
1 #!/usr/bin/perl
2 use 5.010000;
3 use warnings;
4
5 use App::Web::Comstock;
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::Comstock::app,
12 }
This page took 0.02268 seconds and 4 git commands to generate.