mirror of
https://github.com/perlbot/perlbuut-pastebin
synced 2025-06-07 14:17:26 -04:00
15 lines
295 B
Perl
Executable file
15 lines
295 B
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use lib 'lib';
|
|
use Mojolicious::Commands;
|
|
use Mojolicious::Plugins;
|
|
|
|
my $plugins = Mojolicious::Plugins->new;
|
|
push @{$plugins->namespaces}, 'App::Plugins';
|
|
|
|
|
|
# Start command line interface for application
|
|
Mojolicious::Commands->start_app('App');
|