list = await env.KV.list()
for (const key of list.keys) {
const value = await env.KV.get(key.name)
console.log(`Key: ${key.name}, Value:`, value)
}
list = await env.KV.list()
for (const key of list.keys) {
const value = await env.KV.get(key.name)
console.log(`Key: ${key.name}, Value:`, value)
}