-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add delete_object fn to client #7
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Unrelatedly, note there are unused import of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM aside from some comments on doc consistency.
src/types.rs
Outdated
@@ -93,10 +96,57 @@ pub struct PutObjectRequest { | |||
/// read-after-update consistency guarantees. | |||
#[prost(message, repeated, tag = "3")] | |||
pub transaction_items: ::prost::alloc::vec::Vec<KeyValue>, | |||
/// Items to be deleted as a result of this PutObjectRequest. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need ticks on PutObjectRequest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All ticks will be auto-fixed after lightningdevkit/vss-server#16 :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generated/updated docs after merging above.
They are not unused, currently being used for doc-links. |
Ah, no need to actually import them for this, you can just add markdown references to the end of the doc comment, just like this:
|
directly used path in docs |
No description provided.