Move to asyncio services, even though everything is largely sync

This commit is contained in:
Cyber MacGeddon 2025-02-11 20:15:31 +00:00
parent a0bf2362f6
commit 29f209980a
60 changed files with 244 additions and 228 deletions

View file

@ -109,7 +109,7 @@ class Processor(ConsumerProducer):
print("Initialised", flush=True)
def handle(self, msg):
async def handle(self, msg):
v = msg.value()
@ -341,5 +341,5 @@ class Processor(ConsumerProducer):
def run():
Processor.start(module, __doc__)
Processor.launch(module, __doc__)