mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
|
import checkMain from "./check";
|
||
|
|
||
|
(async function runHusky() {
|
||
|
try {
|
||
|
await checkMain();
|
||
|
} catch (error) {
|
||
|
process.exit(1);
|
||
|
}
|
||
|
})();
|