Files
THOS-Server/save_state.php

7 lines
166 B
PHP
Raw Normal View History

2025-06-05 08:52:31 +02:00
<?php
$input = json_decode(file_get_contents('php://input'), true);
if ($input) {
file_put_contents('/home/surillya/.thos_state.json', json_encode($input));
}
?>