mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01: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 };
|