mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-09 12:58:06 +00:00
10 lines
170 B
Plaintext
10 lines
170 B
Plaintext
|
#! /usr/bin/env node
|
||
|
|
||
|
const { main } = require('../dist/cli/compare/compare-blocks')
|
||
|
|
||
|
main().catch(err => {
|
||
|
console.log(err);
|
||
|
}).finally(() => {
|
||
|
process.exit(0);
|
||
|
});
|