#!perl
use strict;
use utf8;
my $cmd = shift;
if( $cmd eq 'console' ) {
my $jc = Jaipo::UI::Console->new;
$jc->init;
$jc->run;
}
else {
print <<HELP
Usage:
perl -Ilib bin/jaipo console
HELP
}