Skip to content

Commit

Permalink
Merge pull request #4 from manyuanrong/exports
Browse files Browse the repository at this point in the history
Exports
  • Loading branch information
manyuanrong authored Mar 7, 2020
2 parents 913ae41 + c5490f1 commit b4a8159
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## Examples

```ts
import { init, MongoClient } from "https://deno.land/x/[email protected].0/mod.ts";
import { init, MongoClient } from "https://deno.land/x/[email protected].1/mod.ts";

// Initialize the plugin
await init();
Expand Down
10 changes: 6 additions & 4 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export { ClientOptions, MongoClient } from "./ts/client.ts";
export { Database } from "./ts/database.ts";
export { init } from "./ts/util.ts";
export const VERSION = "v0.3.0";
export * from "./ts/client.ts";
export * from "./ts/collection.ts";
export * from "./ts/database.ts";
export * from "./ts/result.ts";
export * from "./ts/util.ts";
export const VERSION = "v0.3.1";

0 comments on commit b4a8159

Please sign in to comment.