(service: str, run_command, console)
| 14 | return "" |
| 15 | |
| 16 | def _brew_start(service: str, run_command, console) -> bool: |
| 17 | return run_command(["brew", "services", "start", service], console, check=False) is not None |
| 18 | |
| 19 | def _escape_cypher_password(password: str) -> str: |
| 20 | return password.replace("\\", "\\\\").replace("'", "\\'") |
no test coverage detected