1
0
silverbullet/server/deps.ts

16 lines
374 B
TypeScript
Raw Normal View History

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 {
2024-01-13 17:07:02 +00:00
Context,
HonoRequest,
2024-01-13 17:07:02 +00:00
Next,
} from "https://deno.land/x/hono@v3.12.2/mod.ts";