deps.ts 711 B

12345678910
  1. export { deferred } from "https://deno.land/std/async/mod.ts";
  2. export type { Deferred } from "https://deno.land/std/async/mod.ts";
  3. export { join } from "https://deno.land/std@0.95.0/path/mod.ts";
  4. export { createHash } from "https://deno.land/std@0.95.0/hash/mod.ts";
  5. export * as Color from "https://deno.land/std@0.95.0/fmt/colors.ts";
  6. export { createError } from "https://deno.land/x/http_errors@3.0.0/mod.ts";
  7. export { opine, Router } from "https://deno.land/x/opine@1.3.2/mod.ts";
  8. export type { ErrorRequestHandler, Request, ParamsDictionary } from "https://deno.land/x/opine@1.3.2/mod.ts";
  9. export interface server { host: string; secret: string };
  10. // export type queue = Record<string, deferred<string>()>;