export async function getAllArticles() {
const articles = [];
for await (const res of kv.list({ prefix: ["article"] })) {
articles.push(res.value);
}
return articles.reverse();
}
export async function getAllArticles() {
const articles = [];
for await (const res of kv.list({ prefix: ["article"] })) {
articles.push(res.value);
}
return articles.reverse();
}