(sandbox_name: &str)
| 143 | /// Build a Podman container name from the sandbox name. |
| 144 | #[must_use] |
| 145 | pub fn container_name(sandbox_name: &str) -> String { |
| 146 | format!("{CONTAINER_PREFIX}{sandbox_name}") |
| 147 | } |
| 148 | |
| 149 | /// Build the workspace volume name from the sandbox ID. |
| 150 | #[must_use] |
no outgoing calls
no test coverage detected