PostText/PostText.pl

13 lines
159 B
Perl
Raw Normal View History

#!/usr/bin/env perl
# PostText v0.1
# Jul 22
use Mojolicious::Lite -signatures;
get '/', sub ($c) {
$c->render(text => 'ayy... lmao')
};
app->start();