1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-20 07:11:40 +03:00
leon/scripts/setup-offline/run-setup-hotword.js

15 lines
262 B
JavaScript

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