diff --git a/src/services/mongo/mod.ts b/src/services/mongo/mod.ts index e549036..6771000 100644 --- a/src/services/mongo/mod.ts +++ b/src/services/mongo/mod.ts @@ -1,5 +1,6 @@ import { Database, + Document, MongoClient, parseConnectionString, } from "../../../deps/mongo.ts"; @@ -16,8 +17,8 @@ export class MongoService { ) { } - public collection(name: string) { - return this.db.collection(name); + public collection(name: string) { + return this.db.collection(name); } public close() {