fixes, example queue from beginning of time

This commit is contained in:
msk
2022-09-28 02:20:06 -07:00
parent 5665a22325
commit 2e78cb1ed7
5 changed files with 1304 additions and 31 deletions
+3 -2
View File
@@ -50,8 +50,9 @@ async def async_main():
await listen.run()
case 'c' | 'catchup':
print('RUNNING IN CATCH-UP MODE\n')
await catchup.run(PROGRAM_ARGS)
await listen.run()
if await catchup.run(PROGRAM_ARGS):
print('CATCH-UP MODE DONE, GOING INTO LISTEN MODE')
await listen.run()
case 'd' | 'delete-all':
print('WARNING: SELF-DESTRUCT MODE')
await self_destruct()