mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { createAuthClient } from "better-auth/react";
|
|
import { env } from "@opencut/env";
|
|
|
|
export const { signIn, signUp, useSession } = createAuthClient({
|
|
baseURL: env.NEXT_PUBLIC_SITE_URL,
|
|
});
|