wethepeople.win/wethepeople.pl

18 lines
202 B
Perl
Raw Permalink Normal View History

2021-01-21 00:15:31 -05:00
#!/usr/bin/env perl
use Mojolicious::Lite;
get '/' => sub {
my ($c) = @_;
$c->redirect_to('/welcome');
};
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();