worked on various things

This commit is contained in:
Chris Kruining 2025-06-17 16:13:40 +02:00
parent f3cb35653e
commit 3c35b89250
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
18 changed files with 156 additions and 126 deletions

6
src/auth.client.ts Normal file
View file

@ -0,0 +1,6 @@
import { createAuthClient } from "better-auth/solid";
import { genericOAuthClient } from "better-auth/client/plugins";
export const { signIn, signOut, useSession, ...client } = createAuthClient({
plugins: [genericOAuthClient()],
});