9 lines
140 B
Python
9 lines
140 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class BaseDaemon(ABC):
|
|
name: str
|
|
|
|
@abstractmethod
|
|
async def run(self) -> None:
|
|
... |