You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
188 B

#!/usr/bin/perl -w
#
# Intent: running the ToyChain API server
#
use lib 'lib';
use toychain;
use API qw(apigw_run);
apigw_run();
exit $?;
1; # $Source: /my/perl/script/apigw.pl $