(root: &std::path::Path, id: &ArrayId)
| 205 | } |
| 206 | |
| 207 | pub(super) fn array_dir(root: &std::path::Path, id: &ArrayId) -> PathBuf { |
| 208 | root.join(format!("t{}-{}", id.tenant_id.as_u64(), id.name)) |
| 209 | } |
| 210 | |
| 211 | #[cfg(test)] |
| 212 | mod tests { |
no test coverage detected