chat / api /server /routes /files /speech /customConfigSpeech.js
helloya20's picture
Upload 2345 files
f0743f4 verified
const express = require('express');
const router = express.Router();
const { getCustomConfigSpeech } = require('~/server/services/Files/Audio');
router.get('/get', async (req, res) => {
await getCustomConfigSpeech(req, res);
});
module.exports = router;