We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a727461 commit 8f791b4Copy full SHA for 8f791b4
src/lib.rs
@@ -1,6 +1,16 @@
1
+//! Client-side library to interact with Versioned Storage Service (VSS).
2
+
3
#![deny(rustdoc::broken_intra_doc_links)]
4
#![deny(rustdoc::private_intra_doc_links)]
5
6
+use crate::client::VssClient;
7
+use crate::error::VssError;
8
9
+/// Implements a thin-client [[`VssClient`]] to access a hosted instance of Versioned Storage Service (VSS).
10
pub mod client;
11
12
+/// Implements the error type [[`VssError`]] returned on interacting with [`VssClient`]
13
pub mod error;
14
15
+/// Contains request/response types generated from API definition of VSS.
16
pub mod types;
0 commit comments