mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-12 01:54:45 +08:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
|
|
import { betterAuth } from "better-auth";
|
||
|
|
|
||
|
|
export const auth = betterAuth({
|
||
|
|
emailAndPassword: {
|
||
|
|
enabled: true,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export type Session = typeof auth.$Infer.Session;
|