grammers_client/client/
mod.rs

1// Copyright 2020 - developers of the `grammers` project.
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8pub mod auth;
9pub mod bots;
10pub mod chats;
11#[allow(clippy::module_inception)]
12pub mod client;
13pub mod dialogs;
14pub mod files;
15pub mod messages;
16pub mod net;
17pub mod updates;
18
19pub use auth::SignInError;
20pub(crate) use client::ClientInner;
21pub use client::{Client, Config, InitParams};