Rust implementation of Telegraph API
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