16
1
mirror of https://github.com/cerc-io/watcher-ts synced 2025-03-12 05:59:23 +00:00
watcher-ts/packages/graph-node/bin/compare-blocks

10 lines
170 B
Plaintext
Raw Normal View History

#! /usr/bin/env node
const { main } = require('../dist/cli/compare/compare-blocks')
main().catch(err => {
console.log(err);
}).finally(() => {
process.exit(0);
});