12 lines
213 B
Perl
Executable file
12 lines
213 B
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
# PostText v0.1
|
|
# Jul 22
|
|
|
|
use v5.34;
|
|
use Mojo::File qw{curfile};
|
|
use lib curfile->dirname->sibling('lib')->to_string;
|
|
use Mojolicious::Commands;
|
|
|
|
Mojolicious::Commands->start_app('PostText');
|