The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl -c

use lib '../lib', 'lib';

use YAML::XS;

use Plack::Builder;

my $app = builder {
    enable "Plack::Middleware::TrafficLog",
        with_body => 0;
    sub { [ 200, [ 'Content-Type' => 'text/plain' ], [ Dump \@_ ] ] };
};