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 EmbeddedTestApp;
use Mojolicious::Lite;

plugin "JSONConfig";

get '/works';

get '/works/too' => 'too';

1;
__DATA__
@@ works.html.ep
It is <%= $name %>!

@@ too.html.ep
It <%= config->{it} %>!