feat(sync): round trip cloud snapshots

This commit is contained in:
2026-05-16 00:01:28 -04:00
parent 06e947f43e
commit 40ab6b4874
22 changed files with 694 additions and 69 deletions
+4
View File
@@ -359,6 +359,10 @@ function testEnv(
get(key: string): Promise<string | null> {
return Promise.resolve(values.get(key) ?? null);
},
put(key: string, value: string): Promise<void> {
values.set(key, value);
return Promise.resolve();
},
delete(key: string): Promise<void> {
values.delete(key);
return Promise.resolve();