from __future__ import annotations from typing import Any class LinuxServiceExecutor: def execute(self, params: dict[str, Any]) -> tuple[bool, str, dict[str, Any], dict[str, Any]]: return False, "linux service executor not implemented", {"params": params}, {}