From 2a247f922192e15d9d7cb70edbcf589c86d044a9 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 22 Oct 2014 14:00:01 -0400 Subject: initial implementation --- bin/chessbot | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bin/chessbot (limited to 'bin/chessbot') diff --git a/bin/chessbot b/bin/chessbot new file mode 100644 index 0000000..c007ad6 --- /dev/null +++ b/bin/chessbot @@ -0,0 +1,9 @@ +#!/usr/bin/env perl +use strict; +use warnings; + +use Bot::Zulip::Chess; +use JSON::PP; + +my $config = decode_json(scalar do { local $/; <> }); +Bot::Zulip::Chess->new($config)->run; -- cgit v1.2.3-54-g00ecf