telegraph-api-rs 0.1.0

Rust implementation of Telegraph API
Documentation

telegraph-api-rs

Rust implementation of Telegraph API

Quick start

Add dependency to the Cargo.toml

[dependencies]
telegraph-api-rs = "0.1.0"

And create account

use telegraph_api_rs::{Telegraph, Request};

let telegraph = Telegraph::new();
let account = telegraph.create_account()
.short_name("Short name")
.author_name("Author name")
.send()
.unwrap();

More examples in the documentation