llama-stack-mirror/llama_stack/ui/app/api/auth/[...nextauth]/route.ts
Eric Huang 464b96cb09 nextauth
# What does this PR do?


## Test Plan
2025-07-08 01:25:47 -07:00

6 lines
161 B
TypeScript

import NextAuth from "next-auth";
import { authOptions } from "@/lib/auth";
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };