]> ruin.nu Git - NDIRC.git/blobdiff - ndbot.pl
Some module preloading and cleanup
[NDIRC.git] / ndbot.pl
index a14ee36fe319bef16eaaeb34b7eda5d8c3e5acf3..1f97e577c5d430989bd62993388af408a316d5a4 100755 (executable)
--- a/ndbot.pl
+++ b/ndbot.pl
 use strict;
 use warnings;
 use feature ':5.10';
+
+#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 $@;