hermes-web/app/api/auth/[...nextauth]/route.ts

6 lines
147 B
TypeScript
Raw Normal View History

2023-12-30 05:56:40 -05:00
import NextAuth from 'next-auth'
import { options } from './options'
const handler = NextAuth(options)
export { handler as GET, handler as POST }