4 lines
79 B
Python
4 lines
79 B
Python
class Runnable:
|
|
def run(self) -> None:
|
|
raise NotImplementedError()
|