telegraph-api-rs

Rust implementation of Telegraph API

Quick start

Add dependency to the Cargo.toml toml [dependencies] telegraph-api-rs = "0.1.0"

And create account

```rust use telegraphapirs::{Telegraph, Request};

let telegraph = Telegraph::new(); let account = telegraph.createaccount() .shortname("Short name") .author_name("Author name") .send() .unwrap(); ```

More examples in the documentation