Skip to content

Commit 31dfb0c

Browse files
committed
Add Module level docs
1 parent 0031a6b commit 31dfb0c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/lib.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
//! Client-side library to interact with Versioned Storage Service (VSS).
2+
13
#![deny(rustdoc::broken_intra_doc_links)]
24
#![deny(rustdoc::private_intra_doc_links)]
35

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).
410
pub mod client;
11+
12+
/// Implements the error type [[`VssError`]] returned on interacting with [`VssClient`]
513
pub mod error;
14+
15+
/// Contains request/response types generated from API definition of VSS.
616
pub mod types;

0 commit comments

Comments
 (0)