mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-23 05:12:26 +00:00
6 lines
161 B
TypeScript
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 };
|