1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-10-26 18:18:46 +03:00
leon/scripts/setup-offline/run-setup-hotword.js

15 lines
282 B
JavaScript

import { LogHelper } from '@/helpers/log-helper'
import setupHotword from './setup-hotword'
/**
* Execute the setup offline hotword script
*/
;(async () => {
try {
await setupHotword()
} catch (e) {
LogHelper.error(`Failed to set up offline hotword: ${e}`)
}
})()