WIP: Implement Realtime Ephemeral Token functionality and update related components

This commit is contained in:
Marco Beretta 2024-12-19 14:58:15 +01:00 committed by Danny Avila
parent 12d7028a18
commit 6b90817ae0
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956
12 changed files with 213 additions and 13 deletions

View file

@ -3,7 +3,7 @@ const router = express.Router();
const { getCustomConfigSpeech } = require('~/server/services/Files/Audio');
router.get('/get', async (req, res) => {
router.get('/', async (req, res) => {
await getCustomConfigSpeech(req, res);
});