9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
|
|
import { defineApp } from 'convex/server';
|
||
|
|
import betterAuth from './betterAuth/convex.config';
|
||
|
|
|
||
|
|
const app = defineApp();
|
||
|
|
|
||
|
|
app.use(betterAuth);
|
||
|
|
|
||
|
|
export default app;
|