bazar/lib/get-user-session.ts
2024-11-22 17:12:41 +07:00

8 lines
237 B
TypeScript

import { authOptions } from "@/constants/auth-options"
import { getServerSession } from "next-auth"
export const getUserSession = async () => {
const session = await getServerSession(authOptions);
return session?.user ?? null
}