1
0
silverbullet/server/deps.ts
2024-01-13 18:07:02 +01:00

16 lines
374 B
TypeScript

export * from "../common/deps.ts";
export { Hono } from "https://deno.land/x/hono@v3.12.2/mod.ts";
export {
deleteCookie,
getCookie,
setCookie,
} from "https://deno.land/x/hono@v3.12.2/helper.ts";
export { cors } from "https://deno.land/x/hono@v3.12.2/middleware.ts";
export type {
Context,
HonoRequest,
Next,
} from "https://deno.land/x/hono@v3.12.2/mod.ts";