rest.php 121 B

1234567
  1. <?php
  2. if (ubRouting::get('action') == 'rest') {
  3. $restApi = new RestAPI();
  4. $restApi->catchRequest();
  5. die();
  6. }