Fold imfs::new back into imfs

This commit is contained in:
Lucien Greathouse
2019-09-19 15:25:07 -07:00
parent fc6f84897f
commit 71968fca0d
18 changed files with 30 additions and 40 deletions

View File

@@ -9,7 +9,7 @@ use hyper::{service::Service, Body, Method, Request, StatusCode};
use rbx_dom_weak::RbxId;
use crate::{
imfs::new::ImfsFetcher,
imfs::ImfsFetcher,
serve_session::ServeSession,
web::{
interface::{

View File

@@ -12,7 +12,7 @@ use futures::{
use hyper::{service::Service, Body, Request, Response, Server};
use log::trace;
use crate::{imfs::new::ImfsFetcher, serve_session::ServeSession};
use crate::{imfs::ImfsFetcher, serve_session::ServeSession};
use self::{api::ApiService, ui::UiService};

View File

@@ -7,7 +7,7 @@ use hyper::{header, service::Service, Body, Method, Request, Response, StatusCod
use ritz::html;
use crate::{
imfs::new::ImfsFetcher,
imfs::ImfsFetcher,
serve_session::ServeSession,
web::{
interface::{ErrorResponse, SERVER_VERSION},