Put some files in place for later; implement a basic Mojolicious::Lite app
This commit is contained in:
parent
479c15bcb9
commit
59c8153ef4
12
PostText.pl
Normal file
12
PostText.pl
Normal 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();
|
Loading…
Reference in a new issue