The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Sample::Root;
use parent 'Sample::Base';
use Dancer::OO::Dancer;
use strict;

post "" => wrap {
	my ($self, $c, $p) = @_;
	template $self, "index", { c => $c, p => $p };
};

1;