(name: str)
| 25 | |
| 26 | |
| 27 | def executable_status(name: str) -> dict[str, Any]: |
| 28 | resolved = command_path(name) |
| 29 | return {"name": name, "present": resolved is not None, "path": resolved} |
| 30 | |
| 31 | |
| 32 | def module_status(name: str) -> dict[str, Any]: |
no test coverage detected