#!/usr/bin/env -S npx tsx import run from "./src/run.js"; async function main() { while (true) { await run(); } } main();