X-Git-Url: https://ruin.nu/git/?p=NDIRC.git;a=blobdiff_plain;f=ndbot.pl;h=afc8722741732a41c22f280ad83dc13bd8e9e0d2;hp=1f97e577c5d430989bd62993388af408a316d5a4;hb=8d103256e7f29d892d040ec25a38b2cb56e7f942;hpb=17aabe51d5b62ae4bcae5ec3b02757ab5aa65b77 diff --git a/ndbot.pl b/ndbot.pl index 1f97e57..afc8722 100755 --- a/ndbot.pl +++ b/ndbot.pl @@ -22,9 +22,14 @@ use strict; use warnings; use feature ':5.10'; +use local::lib; + +use File::Basename; +use lib dirname (__FILE__) . "/.."; + #use Devel::Leak::Object qw{ GLOBAL_bless }; -use POE qw(Component::IRC::Qnet::State); +use POE qw(Component::IRC::Qnet::State Loop::Mojo_IOLoop); use Moose; use MooseX::Declare; @@ -59,3 +64,5 @@ POE::Session->create( ); $poe_kernel->run(); + +1;