blob: 215cae698f959383b23d1fe1225a678344692c68 (
plain)
1
2
3
4
5
6
7
|
import { APIEvent } from "@solidjs/start"
import { useAuthSession } from "~/context/auth"
export async function GET(input: APIEvent) {
const session = await useAuthSession()
return Response.json(session.data)
}
|