8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
|
|
/* eslint-disable new-cap */
|
||
|
|
import NextAuth from 'next-auth'
|
||
|
|
import {options} from './options.js'
|
||
|
|
|
||
|
|
const handler = NextAuth(options)
|
||
|
|
|
||
|
|
export {handler as GET, handler as POST}
|