Changed most everything

This commit is contained in:
2022-06-20 12:47:20 +01:00
parent 7856424ad5
commit 6fb4b581b1
12 changed files with 518 additions and 126 deletions

View File

@@ -1,2 +1,8 @@
mod cache;
pub use cache::Cache;
mod substack;
pub use cache::Cache;
pub use substack::Substack;
pub fn as_modpath(path: &Vec<String>) -> String {
path.join("::")
}