www2.0/www-swagg.pl
2021-02-28 02:27:38 -05:00

19 lines
235 B
Perl
Executable file

#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => sub {
my ($c) = @_;
my $fortune = `fortune` || "huh??\n";
$c->render(fortune => $fortune)
} => 'index';
get '/die';
get '/me';
get '/news';
app->start();