pushFromHead.ts 196 B

12345678910
  1. import { PullAndPush } from './core/pullAndPush'
  2. async function main() {
  3. await new PullAndPush(true, true).run()
  4. }
  5. main().catch((error) => {
  6. console.error(error);
  7. process.exitCode = 1;
  8. })