#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/../lib";
# use this block if you don't need middleware, and only have a single target Dancer app to run here
use SessionTest;
SessionTest->to_app;
=begin comment
# use this block if you want to include middleware such as Plack::Middleware::Deflater
use SessionTest;
use Plack::Builder;
builder {
enable 'Deflater';
SessionTest->to_app;
}
=end comment
=cut
=begin comment
# use this block if you want to mount several applications on different path
use SessionTest;
use SessionTest_admin;
use Plack::Builder;
builder {
mount '/' => SessionTest->to_app;
mount '/admin' => SessionTest_admin->to_app;
}
=end comment
=cut