1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-18 14:21:32 +03:00
leon/scripts/run-check.js

17 lines
228 B
JavaScript
Raw Normal View History

2019-02-10 15:26:50 +03:00
import loader from '@/helpers/loader'
import check from './check'
2019-02-10 15:26:50 +03:00
/**
* Execute the checking script
*/
(async () => {
try {
loader.start()
await check()
loader.stop()
} catch (e) {
loader.stop()
}
})()