1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-19 14:52:21 +03:00
leon/scripts/setup-offline/run-setup-stt.js
2021-03-02 17:02:55 +08:00

15 lines
238 B
JavaScript

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