mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
import { stripeClient } from "@better-auth/stripe/client"
|
|
import { createAuthClient } from "better-auth/client"
|
|
import { emailOTPClient } from "better-auth/client/plugins"
|
|
|
|
export const authClient = createAuthClient({
|
|
plugins: [
|
|
emailOTPClient(),
|
|
stripeClient({
|
|
subscription: true,
|
|
}),
|
|
],
|
|
})
|