use std::path::PathBuf; use anyhow::Result; use crate::task::{run_task, Project}; pub mod handle; pub use handle::handle; impl Project { pub(super) fn get_neorg_path(&self) -> Result { let project_path = run_task(&[ "_get", format!("rc.context.{}.rc.neorg_path", self.to_context_display()).as_str(), ])?; Ok(PathBuf::from(project_path.as_str())) } }