add server software

This commit is contained in:
2026-03-13 19:27:01 +01:00
parent 763bf41da5
commit 9bc1c18731
12 changed files with 3809 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
<?php
require "../api.php";
$api = new mcServApi();
if (!$api->checkAuth()) {
die('{"status":"500", "error":"Unauthorized"}');
}
$config = $api->getConf();
$file = file_get_contents($config["PATH"]. "/assets/server_software.json");
$json["status"] = 200;
$json["server_software"] = json_decode($file, true);
die(json_encode($json, JSON_UNESCAPED_SLASHES));
?>