(socket_path: PathBuf)
| 933 | |
| 934 | #[cfg(unix)] |
| 935 | pub async fn run_foreground(socket_path: PathBuf) -> Result<()> { |
| 936 | run_foreground_unix(socket_path).await |
| 937 | } |
| 938 | |
| 939 | #[cfg(not(unix))] |
| 940 | pub async fn run_foreground(_socket_path: PathBuf) -> Result<()> { |
no test coverage detected