forked from halvardssm/deno-nessie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
41 lines (37 loc) · 1.09 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/** Deno Standard Library */
export {
basename,
dirname,
fromFileUrl,
relative,
resolve,
toFileUrl,
} from "https://deno.land/[email protected]/path/mod.ts";
export {
assert,
assertEquals,
} from "https://deno.land/[email protected]/testing/asserts.ts";
export { exists } from "https://deno.land/[email protected]/fs/mod.ts";
export { format } from "https://deno.land/[email protected]/datetime/mod.ts";
export {
bold,
green,
yellow,
} from "https://deno.land/[email protected]/fmt/colors.ts";
/** Cliffy */
export {
Command as CliffyCommand,
CompletionsCommand as CliffyCompletionsCommand,
HelpCommand as CliffyHelpCommand,
Select as CliffySelect,
Toggle as CliffyToggle,
} from "https://deno.land/x/[email protected]/mod.ts";
export type { IAction as CliffyIAction } from "https://deno.land/x/[email protected]/mod.ts";
/** MySQL */
export { Client as MySQLClient } from "https://deno.land/x/[email protected]/mod.ts";
/** PostgreSQL */
export {
Client as PostgreSQLClient,
} from "https://deno.land/x/[email protected]/mod.ts";
/** SQLite */
export { DB as SQLiteClient } from "https://deno.land/x/[email protected]/mod.ts";