File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change
1
+ //! Client-side library to interact with Versioned Storage Service (VSS).
2
+ //!
3
+ //! VSS is an open-source project designed to offer a server-side cloud storage solution specifically
4
+ //! tailored for non-custodial Lightning supporting mobile wallets. Its primary objective is to
5
+ //! simplify the development process for Lightning wallets by providing a secure means to store
6
+ //! and manage the essential state required for Lightning Network (LN) operations.
7
+ //!
8
+ //! Learn more [here](https://github.com/lightningdevkit/vss-server/blob/main/README.md).
9
+
1
10
#![ deny( rustdoc:: broken_intra_doc_links) ]
2
11
#![ deny( rustdoc:: private_intra_doc_links) ]
3
12
13
+ use crate :: client:: VssClient ;
14
+ use crate :: error:: VssError ;
15
+
16
+ /// Implements a thin-client ([`VssClient`]) to access a hosted instance of Versioned Storage Service (VSS).
4
17
pub mod client;
18
+
19
+ /// Implements the error type ([`VssError`]) returned on interacting with [`VssClient`]
5
20
pub mod error;
21
+
22
+ /// Contains request/response types generated from the API definition of VSS.
6
23
pub mod types;
You can’t perform that action at this time.
0 commit comments