wethepeople.win/wethepeople.pl
2021-01-21 00:15:58 -05:00

12 lines
128 B
Perl
Executable File

#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => sub {
my ($c) = @_;
$c->render();
} => 'index';
app->start();