Files
onepilot/frogpilot/third_party/reactivex/abc/startable.py
T
firestar5683 d0e1db6766 StarPilot
2026-03-22 03:15:05 -05:00

15 lines
266 B
Python

from abc import ABC, abstractmethod
class StartableBase(ABC):
"""Abstract base class for Thread- and Process-like objects."""
__slots__ = ()
@abstractmethod
def start(self) -> None:
raise NotImplementedError
__all__ = ["StartableBase"]