cleaning up api and adding in conversation create route

This commit is contained in:
talksik
2022-06-11 08:28:43 -05:00
parent b37a25fa82
commit 92aea9de25
9 changed files with 158 additions and 103 deletions
@@ -0,0 +1,5 @@
import { ObjectId } from 'mongodb';
export default class CreateConversationResponse {
constructor(public conversationId: ObjectId) {}
}