blob: 9069a2f05fe0391ddb8dd9dab040ecb6bc9a56e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env perl
use 5.10.1;
use strict;
use warnings;
use File::Basename qw(basename dirname);
use File::Spec::Functions qw(catdir);
use Cwd qw(realpath);
BEGIN {
require lib;
my $dir = realpath( catdir(dirname(__FILE__), '..') );
lib->import( $dir, catdir( $dir, 'lib' ), catdir( $dir, qw(local lib perl5) ) );
}
use Mojolicious::Commands;
# Start command line interface for application
Mojolicious::Commands->start_app('Bugzilla::Quantum');
|