import type { Hono } from "hono"; import type { Session } from "./lib/session"; export type AppVariables = { session: Session; csrfToken: string; }; export type App = Hono<{ Variables: AppVariables }>;