]> iEval git - app-web-comstock.git/blob - app.psgi
ff22fb4fb36e4e18c4da4d99ee8ae592fdfa394a
[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.054784 seconds and 5 git commands to generate.