from abc import ABC, abstractmethod class BaseDaemon(ABC): name: str @abstractmethod async def run(self) -> None: ...