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

use strict;
use warnings;

#
# Note that Perls older than 5.12, Ext.Direct Actions should be
# loaded at compile time *before* Plack::Runner is activated.
# Including them in app.psgi will not work.
#

use RPC::ExtDirect::Demo::Profile;
use RPC::ExtDirect::Demo::TestAction;
use RPC::ExtDirect::Demo::PollProvider;

use lib '../lib';

use Plack::Runner;

my $runner = Plack::Runner->new;
$runner->run;