You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opendal.apache.org by "suyanhanx (via GitHub)" <gi...@apache.org> on 2023/03/23 12:32:35 UTC

[GitHub] [incubator-opendal] suyanhanx commented on a diff in pull request #1734: feat(bindings/ruby): support read and write

suyanhanx commented on code in PR #1734:
URL: https://github.com/apache/incubator-opendal/pull/1734#discussion_r1146117990


##########
bindings/ruby/src/lib.rs:
##########
@@ -15,16 +15,113 @@
 // specific language governing permissions and limitations
 // under the License.
 
-use magnus::{define_global_function, function, Error};
-use opendal::{services::Memory, Operator};
+use std::{collections::HashMap, str::FromStr};
+
+use magnus::{
+    class, define_class, define_global_function, error::Result, exception, function, method,
+    prelude::*, Error,
+};
+use opendal::services::Memory;
 
 fn hello_opendal() {

Review Comment:
   May we remove this?



-- 
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: commits-unsubscribe@opendal.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org