(
project_root: &Path,
profile_root: &Path,
)
| 193 | } |
| 194 | |
| 195 | pub fn default_profile_sharded_layout( |
| 196 | project_root: &Path, |
| 197 | profile_root: &Path, |
| 198 | ) -> Result<StoreLayout> { |
| 199 | let marker = EnrollmentMarker { |
| 200 | project_id: default_profile_project_id(project_root), |
| 201 | storage_mode: StorageMode::ProfileSharded, |
| 202 | }; |
| 203 | profile_sharded_layout(project_root, profile_root, &marker) |
| 204 | } |
| 205 | |
| 206 | pub fn profile_sharded_layout( |
| 207 | project_root: &Path, |