xin/templates/mojo/thing.pl
2024-06-28 09:37:50 -06:00

15 lines
177 B
Perl

#!/usr/bin/env perl
use strict;
use warnings;
use 5.10.0;
use Mojolicious::Lite -signatures;
get '/' => sub ($c) {
$c->render( text => 'Hello Thing!' );
};
app->start;