Files
opendan/src/aios_kernel/environment.py
T

12 lines
226 B
Python
Raw Normal View History

2023-08-20 22:53:35 -07:00
class environment_event(ABC):
@abstractmethod
def display(self) -> str:
pass
class environment:
def __init__(self) -> None:
pass
def event_to_msg(self,) -> environment_event:
pass