deps.ts 586 B

123456789
  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.1.3/mod.ts";
  7. export { opine, Router } from "https://deno.land/x/opine@2.1.5/mod.ts";
  8. export const secret: string = Deno.env.get("TINYSCALE_SECRET") || ""
  9. export interface server { host: string; secret: string };