-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: Passing OpXxxx
instead of content_type, cache_control,... in functions
#3064
Comments
Hi @Xuanwo , |
How about selecting a service that allows others to work concurrently with you? |
Thank you for the reminder, |
Great, I have marked |
Hi, @Xuanwo |
Hi,@Xuanwo |
So interesting form! I want to try dropbox |
I want to try: azblob |
Cool, have fun! |
Hi @Xuanwo I will take |
Can I have a chance to contribute? I want to try oss. |
I also done: cos |
Hi, @Xuanwo |
I want to try: gcs @Xuanwo |
This doesn't look hard, I'm new to Rust, so could you let me try refactoring Webdav? |
Of course, have fun! |
Thank you all! It's my honor to work with you 🫶 |
OpenDAL used to passing
content_type
,cache_control
directly like the following:It's not good and hard to maintain, sometimes clippy will raising warning for our code. So it's time for us to migrate code like this to passing
OpXxx
. For example, we can change the previous code to:Tasks
gcs
methods signature by using OpXxxx #3087http
methods signature by using OpRead/OpStat #3083oss_put_object
signatures by using OpWrite #3080webdav_put
signatures by usingOpWrite
. #3076webhdfs
methods signature by usingOpXxxx
#3109The text was updated successfully, but these errors were encountered: