Commit 96fa0a2f authored by Nugine's avatar Nugine
Browse files

refactor(s3s): move examples

parent cfebeb13
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -9,3 +9,5 @@ pub fn convert_body(body: s3s::Body) -> impl AsyncBufRead + Send + Sync + 'stati
pub fn convert_streaming_blob(blob: s3s::dto::StreamingBlob) -> impl AsyncBufRead + Send + Sync + 'static {
    StreamReader::new(blob.into_stream().map_err(std::io::Error::other))
}

fn main() {}