mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 00:51:20 +00:00
Rename all references across the codebase: package names, imports, source IDs, directory names, docs, and configs. Co-authored-by: Ona <no-reply@ona.com>
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import { betterAuth } from "better-auth"
|
|
|
|
import { pool } from "../db.ts"
|
|
|
|
export const auth = betterAuth({
|
|
database: pool,
|
|
emailAndPassword: {
|
|
enabled: true,
|
|
},
|
|
})
|