mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 14:01:40 +00:00
- Convert spaces to tabs in tsconfig files - Format CLI commands and prompts - Update generated Convex files - Format betterauth adapter and schema Co-authored-by: Ona <no-reply@ona.com>
14 lines
249 B
TypeScript
14 lines
249 B
TypeScript
import { createApi } from "@convex-dev/better-auth"
|
|
import { createAuth } from "../auth"
|
|
import schema from "./schema"
|
|
|
|
export const {
|
|
create,
|
|
findOne,
|
|
findMany,
|
|
updateOne,
|
|
updateMany,
|
|
deleteOne,
|
|
deleteMany,
|
|
} = createApi(schema, createAuth)
|