telegraph-api-rs

Crates.io Crates.io CI docs.rs

Rust implementation of Telegraph API

Quick start

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

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