last changes

This commit is contained in:
2026-02-21 10:58:05 +01:00
parent 841bc7c805
commit 0902732f60
136 changed files with 10387 additions and 2015 deletions

View File

@@ -2,6 +2,9 @@ import asyncio
class Actor:
"""
actor base class.
"""
def __init__(self, name: str):
self.name = name
self.inbox = asyncio.Queue()