1 | const Collection = require('./lib/collection');
|
2 | const Database = require('./lib/database');
|
3 |
|
4 | exports.Collection = Collection;
|
5 | exports.Database = Database;
|
6 | exports.ObjectId = require('mongodb').ObjectId;
|
7 |
|
8 | exports.connect = function connect(uri, options) {
|
9 | return Database.connect(uri, options);
|
10 | };
|