#!/usr/bin/env node

import { runCli } from "./cli";

(async () => {
  await runCli();
})();
