11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
/**
|
|
* @file app/api/auth/[...nextauth]/route.ts
|
|
* @description NextAuth API route handlers for HTTP GET and POST authentication requests.
|
|
*/
|
|
|
|
import { handlers } from "@/auth";
|
|
|
|
/**
|
|
* HTTP GET and POST request handlers exported from NextAuth configuration.
|
|
*/
|
|
export const { GET, POST } = handlers;
|