Files
DetnalCare/lib/server/server.ts
Iliyan Angelov 39077550ef Dental Care
2025-11-16 14:29:51 +02:00

12 lines
346 B
TypeScript

// This file can be used for server-side authentication utilities
// Example usage:
// import { auth } from "@/lib/auth-session/auth";
// import { headers } from "next/headers";
//
// const someAuthenticatedAction = async () => {
// "use server";
// const session = await auth.api.getSession({
// headers: await headers(),
// });
// };