14 lines
200 B
Perl
14 lines
200 B
Perl
#!/usr/bin/env perl
|
|
use v5.40;
|
|
|
|
use Mojolicious::Lite;
|
|
|
|
|
|
app->secrets(["unused"]);
|
|
|
|
app->static->paths(["s"]);
|
|
app->static->prefix("/s");
|
|
|
|
plugin Mount => { "/" => "script/pooru-site" };
|
|
|
|
app->start;
|