mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 17:18:09 +00:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import NextAuth from "next-auth";
|
|
import GitHub from "next-auth/providers/github";
|
|
|
|
export const { handlers, signIn, signOut, auth } = NextAuth({
|
|
providers: [GitHub],
|
|
});
|