wethepeople.win/wethepeople.pl

12 lines
129 B
Perl
Executable File

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