mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 09:50:15 +01:00
6 lines
209 B
JavaScript
6 lines
209 B
JavaScript
|
|
const mongoose = require('mongoose');
|
||
|
|
const challengeSchema = require('~/models/schema/challengeSchema');
|
||
|
|
|
||
|
|
const ChallengeStore = mongoose.model('Challenge', challengeSchema);
|
||
|
|
|
||
|
|
module.exports = ChallengeStore;
|