15 lines
277 B
PHP
15 lines
277 B
PHP
<?php
|
|
|
|
include_once "../../global.inc.php";
|
|
require_once PATH_API . "/PssApi.php";
|
|
|
|
// instance a new api
|
|
$app = new \api\PssApi();
|
|
|
|
$app->get(\api\PssApi::$routeParameterPids, function ($pid) use ($app) {
|
|
echo $app->sendPssQuery($pid);
|
|
});
|
|
|
|
$app->run();
|
|
?>
|