maxbot 0.1.0

Автоматизация работы с чат-ботами MAX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod client;
mod error;
mod types;
mod attachments;
mod api;
mod utils;

pub use client::MaxClient;
pub use error::{Error, Result};
pub use types::*;
pub use attachments::*;
pub use api::{
    SendMessageParams,
    SendMessageParamsBuilder,
    GetUpdatesParams,
};
pub use utils::split_text;