-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.ts
14 lines (13 loc) · 823 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export { Hono } from "https://deno.land/x/[email protected]/mod.ts";
export { logger as honoLogger } from "https://deno.land/x/[email protected]/middleware.ts";
export { serve } from "https://deno.land/[email protected]/http/server.ts";
export { parse } from "https://deno.land/[email protected]/flags/mod.ts";
export { dirname } from "https://deno.land/[email protected]/path/mod.ts";
export { default as ky } from "https://esm.sh/[email protected]";
export { fromUint8Array as toBase64 } from "https://deno.land/x/[email protected]/mod.ts";
// @deno-types="npm:@types/[email protected]"
export { default as AsyncLock } from "npm:[email protected]";
// @deno-types="npm:@types/[email protected]"
export { default as wanakana } from "npm:[email protected]";
import osPaths from "https://deno.land/x/[email protected]/src/mod.deno.ts";
export const homeDir = osPaths.home();