File size: 199 Bytes
033ca06
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { headers } from "next/headers";
import { cache } from "react";

import { auth } from ".";

export const getSession = cache(async () =>
  auth.api.getSession({ headers: await headers() }),
);