benroeder commented on code in PR #7216:
URL: https://github.com/apache/opendal/pull/7216#discussion_r2838792822
##########
core/services/swift/src/core.rs:
##########
@@ -18,24 +18,220 @@
use std::fmt::Debug;
use std::sync::Arc;
+use bytes::Buf;
+use bytes::Bytes;
use http::Request;
use http::Response;
+use http::StatusCode;
use http::header;
-use http::header::IF_MATCH;
-use http::header::IF_MODIFIED_SINCE;
-use http::header::IF_NONE_MATCH;
-use http::header::IF_UNMODIFIED_SINCE;
+use http::header::CONTENT_TYPE;
+use mea::mutex::Mutex;
use serde::Deserialize;
use opendal_core::raw::*;
use opendal_core::*;
+use std::sync::OnceLock;
+
+/// Authentication mode for Swift.
+pub enum SwiftAuth {
Review Comment:
I see that opendal uses v0.16.x branch and main is v0.19.0 should I add it
to both ? @Xuanwo
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]