1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-18 22:31:32 +03:00
leon/scripts/setup-offline/run-setup-stt.js
2022-09-03 19:12:41 +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}`)
}
})()