echogarden
Version:
An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.
13 lines (8 loc) • 322 B
text/typescript
import { logToStderr, setupProgramTerminationListeners, setupUnhandledExceptionListeners } from '../utilities/Utilities.js'
import { startServer } from './Server.js'
const log = logToStderr
setupUnhandledExceptionListeners()
setupProgramTerminationListeners(() => {
log('')
})
await startServer({}, (options) => { })