initial commit

This commit is contained in:
2026-02-24 11:30:24 +01:00
commit 47f9a25834
178 changed files with 18440 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { auth } from "@kk/auth";
export async function createContext({ req }: { req: Request }) {
const session = await auth.api.getSession({
headers: req.headers,
});
return {
session,
};
}
export type Context = Awaited<ReturnType<typeof createContext>>;