refreshing pages & look and feel a bit

hopefully the new :folder: and :page: icons help you navigate the hobby corners better
This commit is contained in:
りき萌 2024-06-13 21:18:41 +02:00
parent 7720c9df0b
commit d968da10a0
24 changed files with 453 additions and 204 deletions

View file

@ -43,6 +43,8 @@ pub struct Treehouse {
pub branches_by_named_id: HashMap<String, SemaBranchId>,
pub roots: HashMap<String, SemaRoots>,
pub branch_redirects: HashMap<String, SemaBranchId>,
missingno_generator: ulid::Generator,
}
@ -56,6 +58,8 @@ impl Treehouse {
branches_by_named_id: HashMap::new(),
roots: HashMap::new(),
branch_redirects: HashMap::new(),
missingno_generator: ulid::Generator::new(),
}
}