summaryrefslogtreecommitdiffstats
path: root/bin/chessbot
blob: c007ad6a76c9dfa6f98eb68603c75eee8fb137a3 (plain) (blame)
1
2
3
4
5
6
7
8
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;