remove uesless process (#3338)

This commit is contained in:
Yufan Song 2024-08-11 18:53:55 -07:00 committed by GitHub
parent 28dd882f98
commit 1424db8309
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +0,0 @@
from abc import ABC, abstractmethod
class Process(ABC):
@property
@abstractmethod
def pid(self) -> int:
pass
@property
@abstractmethod
def command(self) -> str:
pass
@abstractmethod
def read_logs(self) -> str:
pass