12 lines
228 B
Perl
Executable File
12 lines
228 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use FindBin;
|
|
BEGIN { unshift @INC, "$FindBin::Bin/../lib" }
|
|
use Mojolicious::Commands;
|
|
|
|
# Start command line interface for application
|
|
Mojolicious::Commands->start_app('TorChat');
|