initial commit

This commit is contained in:
Wyatt Johnson
2018-06-16 17:20:51 -06:00
commit 02e1236792
39 changed files with 5258 additions and 0 deletions
@@ -0,0 +1,6 @@
import { Db } from 'mongodb';
import { Comment } from 'talk-server/models/comment';
export async function create(db: Db): Promise<Comment> {
return null;
}