hermes-web/app/api/auth/[...nextauth]/route.ts
2023-12-30 10:56:40 +00:00

6 lines
147 B
TypeScript

import NextAuth from 'next-auth'
import { options } from './options'
const handler = NextAuth(options)
export { handler as GET, handler as POST }