1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-11-10 15:19:18 +03:00
leon/scripts/run-check.js
2021-03-02 17:02:55 +08:00

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()
}
})()