mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-06-18 05:19:17 -04:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
#!/usr/bin/env tsx
|
|
|
|
import { program } from "./index";
|
|
|
|
void program.parseAsync(process.argv).catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|