bagdad/src/main.ts

10 lines
95 B
TypeScript
Raw Normal View History

2021-12-11 22:30:35 +00:00
import run from "./run";
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();