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