MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / default_profile_sharded_layout

Function default_profile_sharded_layout

src/storage.rs:195–204  ·  view source on GitHub ↗
(
    project_root: &Path,
    profile_root: &Path,
)

Source from the content-addressed store, hash-verified

193}
194
195pub 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
206pub fn profile_sharded_layout(
207 project_root: &Path,

Calls 2

profile_sharded_layoutFunction · 0.85