xin/templates/mojo/thing.pl

15 lines
177 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) {
2024-06-28 09:37:50 -06:00
$c->render( text => 'Hello Thing!' );
2022-09-27 17:33:33 -06:00
};
app->start;