Rename vfs -> memofs across the codebase

This commit is contained in:
Lucien Greathouse
2020-03-10 18:05:31 -07:00
parent f61f3671a6
commit 5be4175ac3
28 changed files with 43 additions and 41 deletions

View File

@@ -1,7 +1,7 @@
use std::{collections::HashMap, path::Path};
use memofs::Vfs;
use rbx_dom_weak::{RbxInstanceProperties, RbxTree};
use vfs::Vfs;
use crate::snapshot::{InstanceContext, InstanceMetadata, InstanceSnapshot};
@@ -59,7 +59,7 @@ impl SnapshotMiddleware for SnapshotRbxm {
mod test {
use super::*;
use vfs::{InMemoryFs, VfsSnapshot};
use memofs::{InMemoryFs, VfsSnapshot};
#[test]
fn model_from_vfs() {