mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
![]() |
const mongoose = require('mongoose');
|
||
|
const { createModels } = require('@librechat/data-schemas');
|
||
|
const { connectDb } = require('./connect');
|
||
|
const indexSync = require('./indexSync');
|
||
|
|
||
|
createModels(mongoose);
|
||
|
|
||
|
module.exports = { connectDb, indexSync };
|