PostText/script/post_text

12 lines
213 B
Plaintext
Raw Normal View History

#!/usr/bin/env perl
# PostText v0.1
# Jul 22
use v5.36;
2022-10-05 00:58:14 -04:00
use Mojo::File qw{curfile};
2022-10-01 18:00:23 -04:00
use lib curfile->dirname->sibling('lib')->to_string;
2022-09-15 19:14:40 -04:00
use Mojolicious::Commands;
2022-07-28 21:13:26 -04:00
2022-09-15 19:14:40 -04:00
Mojolicious::Commands->start_app('PostText');