(request: NextRequest)
| 2 | import { updateSession } from '@/lib/supabase/proxy' |
| 3 | |
| 4 | export async function proxy(request: NextRequest) { |
| 5 | return await updateSession(request) |
| 6 | } |
| 7 | |
| 8 | export const config = { |
| 9 | matcher: [ |
nothing calls this directly
no test coverage detected