Skip to content

Instantly share code, notes, and snippets.

@christopherbauer
Created May 20, 2024 00:36
Show Gist options
  • Save christopherbauer/776b15740cada6bab446e22730a28ea0 to your computer and use it in GitHub Desktop.
Save christopherbauer/776b15740cada6bab446e22730a28ea0 to your computer and use it in GitHub Desktop.
app.route("/conversation").get(async (req, res) => {
const conversations = await inMemoryDB.getConversationList();
res.status(200).send(conversations);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment