www2.0/www-swagg.pl

13 lines
179 B
Perl
Raw Normal View History

#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => sub {
my ($c) = @_;
2021-02-27 06:14:38 +00:00
my $fortune = `fortune`;
$c->render(fortune => $fortune)
} => 'index';
app->start();