Files

7 lines
173 B
TypeScript
Raw Permalink Normal View History

2024-06-03 16:29:04 -05:00
import NextAuth from "next-auth"
import GitHub from "next-auth/providers/github"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [ GitHub ],
})