hmt 4 months ago
parent
commit
6f21026884
1 changed files with 3 additions and 3 deletions
  1. 3 3
      deps.ts

+ 3 - 3
deps.ts

@@ -3,8 +3,8 @@ export type { Deferred } from "https://deno.land/std/async/mod.ts";
 export { join } from "https://deno.land/std/path/mod.ts";
 export { createHash } from "https://deno.land/std/hash/mod.ts";
 export * as Color from "https://deno.land/std/fmt/colors.ts";
-export { HttpError } from "https://deno.land/x/http_error@0.1.3/mod.ts";
-export { opine, Router } from "https://deno.land/x/opine@1.9.1/mod.ts";
-export type { ErrorRequestHandler, Request, ParamsDictionary } from "https://deno.land/x/opine@1.9.1/mod.ts";
+export { HttpError } from "https://deno.land/x/http_error@0.7.0/mod.ts";
+export { opine, Router } from "https://deno.land/x/opine@2.3.4/mod.ts";
+export type { ErrorRequestHandler, Request, ParamsDictionary } from "https://deno.land/x/opine@2.3.4/mod.ts";
 export const secret: string = Deno.env.get("TINYSCALE_SECRET") || ""
 export interface server { host: string; secret: string };