10 lines
168 B
Perl
Executable File
10 lines
168 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Mojolicious::Commands;
|
|
|
|
# Start command line interface for application
|
|
Mojolicious::Commands->start_app('BeastBB');
|