wethepeople.win/wethepeople.pl

12 lines
129 B
Perl
Raw Normal View History

2021-01-21 00:15:31 -05:00
#!/usr/bin/env perl
use Mojolicious::Lite;
get '/*' => sub {
my ($c) = @_;
2021-01-21 00:15:31 -05:00
$c->render();
2021-01-21 00:15:31 -05:00
} => 'index';
app->start();