bagdad/main.ts

12 lines
129 B
TypeScript
Raw Normal View History

2024-10-17 20:45:29 +00:00
#!/usr/bin/env -S npx tsx
import run from "./src/run.js";
2021-12-11 22:30:35 +00:00
2021-12-11 21:01:50 +00:00
async function main() {
2021-12-11 22:30:35 +00:00
while (true) {
await run();
}
2021-12-11 21:01:50 +00:00
}
main();