Files
deer-flow/frontend/src/server/better-auth/config.ts

10 lines
177 B
TypeScript
Raw Normal View History

import { betterAuth } from "better-auth";
export const auth = betterAuth({
emailAndPassword: {
enabled: true,
},
});
export type Session = typeof auth.$Infer.Session;