Initial Commit

This commit is contained in:
2025-06-05 08:52:31 +02:00
parent 6451705773
commit 3920faf465
30 changed files with 2936 additions and 0 deletions

6
save_state.php Normal file
View File

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