summaryrefslogtreecommitdiffstats
path: root/bin/run
diff options
context:
space:
mode:
Diffstat (limited to 'bin/run')
-rw-r--r--bin/run21
1 files changed, 21 insertions, 0 deletions
diff --git a/bin/run b/bin/run
new file mode 100644
index 0000000..c3320ec
--- /dev/null
+++ b/bin/run
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use lib 'lib';
+use IM::Engine;
+
+IM::Engine->new(
+ interface => {
+ protocol => 'REPL',
+ },
+ plugins => [
+ Commands => {
+ namespace => 'Bot::Games::Game',
+ exclude_commands => qr/Bot::Games::Game::Role/,
+ prefix => '@',
+ alias => {
+ sg => 'superghost',
+ },
+ },
+ ],
+)->run;