rsgraph 0.1.1

telegra.ph API bindings in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(dead_code)]
#![allow(unused_imports)]

mod types;
mod methods;

use types::{
    account,
    node, node_element,
    page,
};

use methods::{
    create_account,
    create_page,
    get_account_info,
    revoke_access_token,
};