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

use strict;
use utf8;
__PACKAGE__->config(namespace => q{});
# your actions replace this one
sub main :Path('') {
$_[1]->res->body('<h1>It works</h1>');
$_[1]->res->content_type('text/html');
}
1;