aboutsummaryrefslogtreecommitdiff
path: root/src/library.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/library.rs')
-rw-r--r--src/library.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.rs b/src/library.rs
index be75f10..0c42a73 100644
--- a/src/library.rs
+++ b/src/library.rs
@@ -3,7 +3,7 @@ use anyhow::{anyhow, bail, Context, Ok};
use std::{ffi::OsStr, fs::File, path::PathBuf, sync::Arc};
pub struct Library {
- root: Arc<Node>,
+ pub root: Arc<Node>,
}
#[derive(Debug, Clone)]