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

@@ -3,9 +3,9 @@ use std::{
io::{self, BufWriter, Write},
};
use memofs::Vfs;
use snafu::{ResultExt, Snafu};
use tokio::runtime::Runtime;
use vfs::Vfs;
use crate::{
cli::BuildCommand, project::ProjectError, serve_session::ServeSession, snapshot::RojoTree,

View File

@@ -3,9 +3,9 @@ use std::{
sync::Arc,
};
use memofs::Vfs;
use snafu::Snafu;
use termcolor::{BufferWriter, Color, ColorChoice, ColorSpec, WriteColor};
use vfs::Vfs;
use crate::{cli::ServeCommand, serve_session::ServeSession, web::LiveServer};

View File

@@ -1,6 +1,6 @@
use memofs::Vfs;
use reqwest::header::{ACCEPT, CONTENT_TYPE, COOKIE, USER_AGENT};
use snafu::{ResultExt, Snafu};
use vfs::Vfs;
use crate::{auth_cookie::get_auth_cookie, cli::UploadCommand, common_setup};