6 lines
189 B
JavaScript
6 lines
189 B
JavaScript
/* eslint-disable new-cap */
|
|
import NextAuth from 'next-auth'
|
|
import {options} from 'app/api/auth/[...nextauth]/options'
|
|
|
|
export const {auth, handlers, signIn, signOut} = NextAuth(options)
|