You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,20 +17,26 @@ using RustyObjectStore
17
17
init_object_store()
18
18
```
19
19
20
-
Requests are sent via calling `blob_put` or `blob_get!`, providing the location of the object to put/get, either the data to send or a buffer that will receive data, and credentials.
21
-
For `blob_put` the data must be a vector of bytes (`UInt8`).
22
-
For `blob_get!` the buffer must be a vector into which bytes (`UInt8`) can be written.
20
+
Requests are sent via calling `put_object` or `get_object!`, providing the location of the object to put/get, either the data to send or a buffer that will receive data, and credentials.
21
+
For `put_object` the data must be a vector of bytes (`UInt8`).
22
+
For `get_object!` the buffer must be a vector into which bytes (`UInt8`) can be written.
0 commit comments