1
2
3
4
5
6
import { openKv } from "https://esm.town/v/pomdtr/kv";
const kv = openKv();
await kv.set("key", true);
console.log(await kv.get("key"));