NAME
Plack::Middleware::Signposting::JSON - A Signposting implementation for JSON content
SYNOPSIS
my $json_string = '{"hello":"world",....}';
builder {
enable "Plack::Middleware::Signposting::JSON";
sub { 200, [ 'Content-Type' => 'text/plain' ], [ $json_string ] };
};