slingit.org/api.php
2015-04-24 17:54:40 +02:00

13 lines
594 B
PHP

<?php
require_once 'lib/system/autoload.inc'; //SYSTEM Classes
require_once 'slingit/autoload.inc'; //Project Classes
require_once 'config.php';
SYSTEM\system::start($slingit_config);
\SYSTEM\system::include_ExceptionShortcut();
\SYSTEM\system::include_ResultShortcut();
\SYSTEM\system::register_errorhandler_dbwriter();
\SYSTEM\system::register_errorhandler_jsonoutput();
echo \SYSTEM\API\api::run('\SYSTEM\API\verify','api_slingit',array_merge($_POST,$_GET));
new \SYSTEM\LOG\COUNTER("API was called sucessfully.");