Skip to content

Instantly share code, notes, and snippets.

@kazuho
Created December 3, 2015 00:07
Show Gist options
  • Save kazuho/a8529ff1e1dbc55dd6eb to your computer and use it in GitHub Desktop.
Save kazuho/a8529ff1e1dbc55dd6eb to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use Plack::App::Directory;
use Time::HiRes qw(sleep);
my $paf = Plack::App::Directory->new({ root => "htdocs" })->to_app;
sub {
sleep 0.2;
$paf->(@_);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment