1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-19 06:41:33 +03:00
leon/scripts/setup-offline/run-setup-stt.js

15 lines
238 B
JavaScript
Raw Normal View History

2019-02-10 15:26:50 +03:00
import log from '@/helpers/log'
import setupStt from './setup-stt';
/**
* Execute the setup offline STT script
2019-02-10 15:26:50 +03:00
*/
(async () => {
try {
await setupStt()
} catch (e) {
log.error(`Failed to setup offline STT: ${e}`)
}
})()