echogarden
Version:
An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.
9 lines • 369 B
JavaScript
import { logToStderr, setupProgramTerminationListeners, setupUnhandledExceptionListeners } from '../utilities/Utilities.js';
import { startServer } from './Server.js';
const log = logToStderr;
setupUnhandledExceptionListeners();
setupProgramTerminationListeners(() => {
log('');
});
await startServer({}, (options) => { });
//# sourceMappingURL=ServerStarter.js.map