deps.ts 467 B

123456789101112131415
  1. export {
  2. join,
  3. } from "https://deno.land/std@0.95.0/path/mod.ts";
  4. export {
  5. opine,
  6. Router,
  7. } from "https://deno.land/x/opine@1.3.2/mod.ts";
  8. export type {
  9. ErrorRequestHandler,
  10. Request,
  11. ParamsDictionary
  12. } from "https://deno.land/x/opine@1.3.2/mod.ts";
  13. export interface server { host: string; secret: string };
  14. export { createError } from "https://deno.land/x/http_errors@3.0.0/mod.ts";
  15. export { createHash } from "https://deno.land/std@0.95.0/hash/mod.ts";