(sandbox_id: &str)
| 149 | /// Build the workspace volume name from the sandbox ID. |
| 150 | #[must_use] |
| 151 | pub fn volume_name(sandbox_id: &str) -> String { |
| 152 | format!("{VOLUME_PREFIX}{sandbox_id}-workspace") |
| 153 | } |
| 154 | |
| 155 | /// Truncate a container ID to 12 characters (standard short form). |
| 156 | #[must_use] |
no outgoing calls
no test coverage detected