tdlib_tl_parser/tl/mod.rs
1// Copyright 2020 - developers of the `grammers` project.
2// Copyright 2022 - developers of the `tdlib-rs` project.
3//
4// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
7// option. This file may not be copied, modified, or distributed
8// except according to those terms.
9
10//! This module contains all the different structures representing the
11//! various terms of the [Type Language].
12//!
13//! [Type Language]: https://core.telegram.org/mtproto/TL
14mod category;
15mod definition;
16mod parameter;
17mod ty;
18
19pub use category::Category;
20pub use definition::Definition;
21pub use parameter::Parameter;
22pub use ty::Type;