Path to the daemon PID file.
()
| 62 | |
| 63 | /// Path to the daemon PID file. |
| 64 | pub fn pid_path() -> PathBuf { |
| 65 | std::env::temp_dir().join("chrome-devtools-daemon.pid") |
| 66 | } |
| 67 | |
| 68 | /// Write a length-prefixed message to a stream. |
| 69 | pub async fn write_msg<W: AsyncWriteExt + Unpin>(w: &mut W, data: &[u8]) -> anyhow::Result<()> { |
no outgoing calls
no test coverage detected