mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 12:27:44 +00:00
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { createAuthClient } from "better-auth/svelte";
|
|
|
|
export const client = createAuthClient({
|
|
baseURL: "http://localhost:3000",
|
|
});
|
|
export const { signIn, signUp, useSession } = client;
|