AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import NextAuth from "next-auth";
import GitHub from "next-auth/providers/github";
export const {
handlers: { GET, POST },
auth,
signIn,
signOut,
} = NextAuth({
providers: [GitHub],
});