File size: 430 Bytes
cfc59e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import { auth } from "@labas/auth";
import type { Context as HonoContext } from "hono";
export type CreateContextOptions = {
context: HonoContext;
};
export async function createContext({ context }: CreateContextOptions) {
const session = await auth.api.getSession({
headers: context.req.raw.headers,
});
return {
auth: null,
session,
};
}
export type Context = Awaited<ReturnType<typeof createContext>>;
|