Files
THOS-Server/save_state.php
2025-06-05 09:03:28 +02:00

7 lines
166 B
PHP

<?php
$input = json_decode(file_get_contents('php://input'), true);
if ($input) {
file_put_contents('/home/surillya/.thos_state.json', json_encode($input));
}
?>