8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { cookies } from "next/headers";
|
|
|
|
import { getMockSession } from "@/lib/mock-auth";
|
|
|
|
export async function getCurrentMockSession() {
|
|
return getMockSession(await cookies());
|
|
}
|