Spaces:
Running
Running
| """Abstract base class for environment backend strategies.""" | |
| from abc import ABC, abstractmethod | |
| class EnvironmentStrategy(ABC): | |
| def reset_environment(self) -> None: ... | |
| def get_infra_state(self) -> dict: ... | |
| def get_service_help(self, service_name: str) -> tuple[bool, str]: ... | |
| def execute_command(self, command: str) -> tuple[bool, str, str]: ... | |