mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 02:40:14 +01:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
|
|
const { getCustomConfigSpeech } = require('~/server/services/Files/Audio');
|
|
|
|
router.get('/', async (req, res) => {
|
|
await getCustomConfigSpeech(req, res);
|
|
});
|
|
|
|
module.exports = router;
|