projects
/
pr0n
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add a concept where an image can be a rendering of another, which means it is not...
[pr0n]
/
perl
/
pr0n.psgi
1
#! /usr/bin/perl
2
3
use strict;
4
use warnings;
5
use lib qw(.);
6
7
use Plack::Request;
8
use Plack::Response;
9
use Sesse::pr0n::pr0n;
10
11
sub {
12
my $env = shift;
13
my $req = Plack::Request->new($env);
14
my $res = Sesse::pr0n::pr0n::handler($req);
15
return $res->finalize;
16
}