Initial commit
[app-web-comstock.git] / app.psgi
CommitLineData
1659638a
MG
1#!/usr/bin/perl
2use 5.010000;
3use warnings;
4
5use App::Web::Comstock;
6use Plack::App::File;
7use Plack::Builder;
8
9builder {
10 mount '/static/' => Plack::App::File->new(root => 'static')->to_app,
11 mount '/' => App::Web::Comstock::app,
12}
This page took 0.008771 seconds and 4 git commands to generate.