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