topic exchange rabbitmq

This commit is contained in:
2026-09-09 14:07:08 +03:00
parent 10ce1755bd
commit 1aa3085468
9 changed files with 170 additions and 20 deletions
+9
View File
@@ -0,0 +1,9 @@
from abc import ABC, abstractmethod
class BaseDaemon(ABC):
name: str
@abstractmethod
async def run(self) -> None:
...