2025-06-20 18:06:57 +02:00
|
|
|
<?php
|
2025-06-20 19:19:58 +02:00
|
|
|
define('THOS_STATE_FILE', '/root/.thos_state.json');
|
2025-06-20 18:06:57 +02:00
|
|
|
|
|
|
|
function thos_load_state() {
|
|
|
|
if (!file_exists(THOS_STATE_FILE)) return null;
|
|
|
|
return json_decode(file_get_contents(THOS_STATE_FILE), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function thos_save_state($data) {
|
|
|
|
file_put_contents(THOS_STATE_FILE, json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
|
|
|
|
}
|
|
|
|
?>
|