telegraph-rs

crates.io Documentation

telegraph binding in Rust

see https://telegra.ph/api for more information

Examples

```rust use telegraph_rs::Telegraph;

let telegraph = Telegraph::new("test_account").create().unwrap();

let page = telegraph.create_page("title", "content", false).unwrap(); ```