?<?php
require_once '../src/TimeTravelCache.php';
$data = json_decode(file_get_contents('php://input'), true);
$cache = new TimeTravelCache();
$success = $cache->revertToIndex($data['key'], $data['index']);
header('Content-Type: application/json');
echo json_encode(['success' => $success]);
|