This commit is contained in:
Difrex 2015-08-11 09:49:27 +03:00
parent 173f74cec6
commit 95357d5c63

View File

@ -19,6 +19,7 @@ use warnings;
use Plack::Builder;
use Plack::Request;
use Plack::Response;
# Static files
use Plack::App::File;
@ -178,7 +179,7 @@ my $user = sub {
# Mountpoints
builder {
mount "/static" => Plack::App::File->new(root => './s/')->to_app;
mount "/static" => Plack::App::File->new( root => './s/' )->to_app;
mount '/' => $root;
mount '/e' => $echo;
mount '/s' => $thread;