Files
Reactive-Resume/packages/auth/src/functions.ts
T
Amruth Pillai 50ba37a27f v5.1.0 (#2970)
* chore(release): v5.1.0

* feat: implement resume thumbnails

* fix: remove unused mcp tools

* docs: fix formatting of docs
2026-05-07 15:12:33 +02:00

9 lines
327 B
TypeScript

import type { AuthSession } from "./types";
import { getRequestHeaders } from "@tanstack/react-start/server";
import { auth } from "./config";
export async function getSession(): Promise<AuthSession | null> {
const result = await auth.api.getSession({ headers: getRequestHeaders() });
return result as AuthSession | null;
}