Dental Care

This commit is contained in:
Iliyan Angelov
2025-11-16 14:29:51 +02:00
commit 39077550ef
194 changed files with 43197 additions and 0 deletions

11
lib/server/server.ts Normal file
View File

@@ -0,0 +1,11 @@
// 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(),
// });
// };