File size: 290 Bytes
aa2e6af
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
const getVoices = require('./getVoices');
const textToSpeech = require('./textToSpeech');
const speechToText = require('./speechToText');
const { updateTokenWebsocket } = require('./webSocket');

module.exports = {
  getVoices,
  speechToText,
  ...textToSpeech,
  updateTokenWebsocket,
};