1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#[cfg(feature = "chats-list")]
pub mod list;

#[cfg(feature = "chats-info")]
pub mod info;

#[cfg(feature = "chats-add_user")]
pub mod add_user;

#[cfg(feature = "chats-remove_user")]
pub mod remove_user;
#[cfg(feature = "chats-add_admin")]
pub mod add_admin;

#[cfg(feature = "chats-set_stealth")]
pub mod set_stealth;

#[cfg(feature = "chats-disable_stealth")]
pub mod disable_stealth;

#[cfg(feature = "chats-create")]
pub mod create;

#[cfg(feature = "chats-pin_message")]
pub mod pin_message;

#[cfg(feature = "chats-unpin_message")]
pub mod unpin_message;

pub mod models;