-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
21 lines (18 loc) · 739 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export const version = '0.1.0';
export const databasePath = 'gdol.db';
import { Database } from 'https://deno.land/x/[email protected]/mod.ts';
export { exists as std_exists } from 'https://deno.land/[email protected]/fs/mod.ts';
export { contentType as std_contentType } from 'https://deno.land/[email protected]/media_types/mod.ts';
export {
canParse as semver_canParse,
compare as semver_compare,
parse as semver_parse,
} from 'https://deno.land/[email protected]/semver/mod.ts';
export { Database };
export { Hono } from 'https://deno.land/x/[email protected]/mod.ts';
export { Command } from 'https://deno.land/x/[email protected]/command/mod.ts';
declare module 'https://deno.land/x/[email protected]/mod.ts' {
interface ContextVariableMap {
db: Database;
}
}