diff --git a/README.md b/README.md index 4ec6a547..98b0dd46 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ## Examples ```ts -import { init, MongoClient } from "https://deno.land/x/mongo@v0.3.0/mod.ts"; +import { init, MongoClient } from "https://deno.land/x/mongo@v0.3.1/mod.ts"; // Initialize the plugin await init(); diff --git a/mod.ts b/mod.ts index 09440376..fca94280 100644 --- a/mod.ts +++ b/mod.ts @@ -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";