add comments

This commit is contained in:
yggverse 2025-02-22 10:15:59 +02:00
parent 753d8bd7c9
commit 707f5727f6

View file

@ -144,6 +144,8 @@ impl Item {
}
}
// Tools
fn meta_path(path: &str) -> String {
format!("{}{META_SUFFIX}", path)
}
@ -153,3 +155,5 @@ fn read_meta(path: &str) -> Result<String> {
File::open(meta_path(path))?.read_to_string(&mut buffer)?;
Ok(buffer)
}
// * @TODO move `meta` feature to separated struct impl on complete