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

3 years ago
3 years ago
  1. #!/usr/bin/perl -w
  2. #
  3. # Intent: running the ToyChain API server
  4. #
  5. use lib 'lib';
  6. use toychain;
  7. use API qw(apigw_run);
  8. apigw_run();
  9. exit $?;
  10. 1; # $Source: /my/perl/script/apigw.pl $