This commit is contained in:
Ross
2026-07-07 17:25:06 +01:00
parent 97898e14d2
commit 460ea1af57
1881 changed files with 51988 additions and 161 deletions
+2 -2
View File
@@ -82,7 +82,7 @@ def try_pretty_json(s: str):
return None
async def run(args):
async def run_capture(args):
in_memory_index = {}
# runtime/shared state for handlers
@@ -539,6 +539,6 @@ if __name__ == '__main__':
# normalize capture types to a set
args.capture_types = {t.strip().lower() for t in args.capture_types.split(',') if t.strip()}
try:
asyncio.run(run(args))
asyncio.run(run_capture(args))
except KeyboardInterrupt:
pass