Unverified Commit 7664c4f3 authored by Nugine's avatar Nugine
Browse files

s3s-aws: proxy

parent 2caa721e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ keywords = ["s3"]
categories = ["web-programming", "web-programming::http-server"]

[dependencies]
aws-sdk-s3 = "0.23.0"
aws-smithy-http = "0.53.1"
aws-smithy-types = "0.53.1"
futures = { version = "0.3.25", default-features = false, features = ["std"] }
+3 −0
Original line number Diff line number Diff line
@@ -7,3 +7,6 @@

mod connector;
pub use self::connector::Connector;

mod proxy;
pub use self::proxy::Proxy;
+9 −0
Original line number Diff line number Diff line
use aws_sdk_s3::Client;

pub struct Proxy(Client);

impl From<Client> for Proxy {
    fn from(val: Client) -> Self {
        Self(val)
    }
}