blob: 3e5c43eeb422ae092485767301f3d96d2aed1e10 [file] [log] [blame]
<?php
require_once("config.php");
class write {
public static function do($json) {
print_r(json_encode($json));
exit();
}
public static function error($n, $msg) {
self::do(["error" => $n, "msg" => $msg]);
}
}
if (!isset($_GET["action"])) {
write::error(1, "No action provided");
}
switch ($_GET["action"]) {
case "getgraf":
$graf = file_get_contents("https://dirba.io/grafo/api.php?req=getGraph");
echo $graf;
break;
default:
write::error(2, "Unknown action");
}
?>