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