Files
Gibs_Website/src/auth.ts
T

7 lines
173 B
TypeScript
Raw 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 ],
})