file cleanup.

This commit is contained in:
2025-09-28 19:12:51 +02:00
parent 90e67652ab
commit d742a0c0ce
28 changed files with 36 additions and 36 deletions

View File

@@ -0,0 +1,13 @@
import asyncio
class Actor:
def __init__(self, name: str):
self.name = name
self.inbox = asyncio.Queue()
async def send(self, msg):
await self.inbox.put(msg)
async def run(self):
raise NotImplementedError