summaryrefslogtreecommitdiffstats
path: root/pttpi/cgi/t/1.board.getBid.pl
blob: 04be5b8963135da7e2499e7067ddd54dd16a41e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use Frontier::Client;
use Data::Dumper;
do 'host.pl';

$brdname = $ARGV[0] || 'SYSOP';
$server = Frontier::Client->new(url => $server_url);
$result = $server->call('board.getBid', $brdname);

print "board.getBid($brdname) from $server_url:\n";
print Dumper($result);