//! Module handles setting up streams for files use super::*; use std::marker::Unpin; use tokio::io::{ AsyncRead, }; /// A read request from the client. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] pub struct Request { } /* pub async fn read_req(mut from: T, key: ) -> eyre::Result where T: AsyncRead + Unpin { todo!("how do we handle encryption of the request data? eh... boring") } */