mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import { createClient } from "better-call/client";
|
|
import { router } from "./router";
|
|
|
|
export const client = createClient<typeof router>({
|
|
baseURL: "http://localhost:3000/api/v1",
|
|
});
|