]> ruin.nu Git - NDIRC.git/blobdiff - ndbot.pl
Emp to EMP
[NDIRC.git] / ndbot.pl
index a14ee36fe319bef16eaaeb34b7eda5d8c3e5acf3..54e2fcc9b56a6d8a9826aa426052a45a6afea012 100755 (executable)
--- a/ndbot.pl
+++ b/ndbot.pl
 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 Moose;
+use MooseX::Declare;
+use MooseX::Declare::StackItem;
+use Parse::Method::Signatures::Sig;
+use MooseX::Types::TypeDecorator;
+use MooseX::Meta::TypeConstraint::ForceCoercion;
+
+use NDIRC::Bot;
+
 eval "require NDIRC::$ARGV[0]";
 
 die $@ if $@;