json.php 222 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * JSON gateway
  4. */
  5. include("globals.php");
  6. include "core/json/app/Gateway.php";
  7. $gateway = new Gateway();
  8. $gateway->setBaseClassPath($servicesPath);
  9. $gateway->service();
  10. ?>