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
181 B

  1. #!/usr/bin/perl -w
  2. #
  3. # Intent: testing the 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/testapi.pl $