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

Function open_project_session_db

src/sessions/cursor.rs:50–53  ·  view source on GitHub ↗
(project_root: &Path)

Source from the content-addressed store, hash-verified

48}
49
50pub async fn open_project_session_db(project_root: &Path) -> Option<GlobalDb> {
51 let db_path = resolved_project_session_db_path(project_root).await?;
52 GlobalDb::open_at(&db_path).await
53}
54
55pub async fn resolved_project_session_db_path(project_root: &Path) -> Option<PathBuf> {
56 if is_hermes_profile_home(project_root) {

Calls 1