socialvoid-rs/README.md

20 lines
428 B
Markdown
Raw Normal View History

2021-10-10 10:05:48 +02:00
# socialvoid-rs
This crate is a high level implementation to access the SocialVoid API. It can be used to build clients for the platform or build automated programs to perform tasks on the SocialVoid network.
## Usage
Add `socialvoid == "0.1"` in your `Cargo.toml` and you're good to go.
## API Documentation
Link to API Documentation
## Example
```
use socialvoid::Client;
let client = Client::new_with_defaults();
```