mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-10 15:19:18 +03:00
17 lines
228 B
JavaScript
17 lines
228 B
JavaScript
import loader from '@/helpers/loader'
|
|
|
|
import check from './check'
|
|
|
|
/**
|
|
* Execute the checking script
|
|
*/
|
|
(async () => {
|
|
try {
|
|
loader.start()
|
|
await check()
|
|
loader.stop()
|
|
} catch (e) {
|
|
loader.stop()
|
|
}
|
|
})()
|