mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
10 lines
148 B
JavaScript
10 lines
148 B
JavaScript
const checkMain = require('./check');
|
|
|
|
(async function runHusky () {
|
|
try {
|
|
await checkMain()
|
|
} catch (error) {
|
|
process.exit(1)
|
|
}
|
|
})()
|