Rename stream module

This commit is contained in:
Aode (Lion) 2021-10-20 19:00:41 -05:00
parent e7b4e4d1cc
commit e7c3e2c96c
5 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
use crate::stream::Process;
use crate::process::Process;
use actix_web::web::Bytes;
use tokio::io::AsyncRead;

View file

@ -1,6 +1,6 @@
use crate::{
error::{Error, UploadError},
stream::Process,
process::Process,
};
use actix_web::web::Bytes;
use tokio::{io::AsyncRead, process::Command};

View file

@ -1,7 +1,7 @@
use crate::{
config::Format,
error::{Error, UploadError},
stream::Process,
process::Process,
};
use actix_web::web::Bytes;
use tokio::{

View file

@ -49,7 +49,7 @@ mod middleware;
mod migrate;
mod processor;
mod range;
mod stream;
mod process;
mod upload_manager;
mod validate;