deps.ts 696 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/path/mod.ts";
  4. export { createHash } from "https://deno.land/std/hash/mod.ts";
  5. export * as Color from "https://deno.land/std/fmt/colors.ts";
  6. export { HttpError } from "https://deno.land/x/http_error@0.7.0/mod.ts";
  7. export { opine, Router } from "https://deno.land/x/opine@2.3.4/mod.ts";
  8. export type { ErrorRequestHandler, Request, ParamsDictionary } from "https://deno.land/x/opine@2.3.4/mod.ts";
  9. export const secret: string = Deno.env.get("TINYSCALE_SECRET") || ""
  10. export interface server { host: string; secret: string };