12 lines
127 B
Perl
Executable file
12 lines
127 B
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
use Mojolicious::Lite;
|
|
|
|
get '/' => sub {
|
|
my ($c) = @_;
|
|
|
|
$c->render()
|
|
} => 'index';
|
|
|
|
app->start();
|