Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

#!/usr/bin/env perl
use Mojolicious::Lite -signatures;
plugin 'OpenTelemetry';
get '/roll' => sub ($c) {
$c->render( json => int 1 + rand 6 );
};
app->start;