xin/templates/mojo/thing.pl

15 lines
173 B
Perl
Raw Normal View History

2022-09-27 17:33:33 -06:00
#!/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;