cyberman/app.psgi

17 lines
216 B
Plaintext
Raw Normal View History

2017-07-14 19:35:17 +02:00
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/lib";
use cyberman;
use Plack::Builder;
builder {
2017-08-20 00:45:25 +02:00
enable "Deflater";
enable "Session";
enable "CSRFBlock";
cyberman->to_app;
2017-07-14 19:35:17 +02:00
}