add proper vfs

This commit is contained in:
Zoe
2024-03-03 17:57:41 -06:00
parent 00037311c6
commit 3a39441717
44 changed files with 1648 additions and 3097 deletions

View File

@@ -29,7 +29,7 @@ impl PartialEq for Uuid {
impl PartialEq<&str> for Uuid {
fn eq(&self, other: &&str) -> bool {
let parts = other.split("-").collect::<Vec<&str>>();
let parts = other.split('-').collect::<Vec<&str>>();
if parts.len() != 5 {
return false;