1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-09-20 14:27:40 +03:00
leon/scripts/run-check.js
2019-02-10 20:26:50 +08:00

17 lines
229 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()
}
})()