flowstate/app/api/auth/[...nextauth]/route.ts
Chneemann a60851ac07
All checks were successful
Deploy Flowstate to VPS / deploy (push) Successful in 1m27s
refactor(lib): consolidate services, types, utils, and actions into lib folder and update import paths
2026-08-23 16:44:18 +02:00

11 lines
314 B
TypeScript

/**
* @file app/api/auth/[...nextauth]/route.ts
* @description API route handler exporting NextAuth authentication request handlers (GET and POST).
*/
import { handlers } from "@/auth";
/**
* Exports NextAuth route handlers for processing authentication endpoints.
*/
export const { GET, POST } = handlers;