Put some files in place for later; implement a basic Mojolicious::Lite app

This commit is contained in:
swagg boi 2022-07-22 18:37:31 -04:00
parent 479c15bcb9
commit 59c8153ef4
3 changed files with 14 additions and 0 deletions

1
AUTHORS Normal file
View file

@ -0,0 +1 @@
Daniel Bowling <swaggboi@slackware.uk>

12
PostText.pl Normal file
View file

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

1
cpanfile Normal file
View file

@ -0,0 +1 @@
requires 'Mojolicious';