telegra-ph 0.1.1

implementation of API of telegra.ph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! We support GET and POST HTTP methods. The response contains a JSON object, which always has a
//! Boolean field ok. If ok equals true, the request was successful, and the result of the query
//! can be found in the result field. In case of an unsuccessful request, ok equals false, and the
//! error is explained in the error field (e.g. SHORT_NAME_REQUIRED). All queries must be made
//! using UTF-8.
//!
pub mod entity;
pub mod methods;
#[cfg(test)]
pub(crate) mod entity_test;

pub use entity::*;
pub use methods::*;