8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
import { APIEvent } from "@solidjs/start"
|
|
import { useAuthSession } from "~/context/auth.session"
|
|
|
|
export async function GET(input: APIEvent) {
|
|
const session = await useAuthSession()
|
|
return Response.json(session.data)
|
|
}
|