Skip to main content

ferogram_tl_parser/tl/
mod.rs

1// Copyright (c) Ankit Chaubey <ankitchaubey.dev@gmail.com>
2//
3// ferogram: async Telegram MTProto client in Rust
4// https://github.com/ankit-chaubey/ferogram
5//
6// Licensed under either the MIT License or the Apache License 2.0.
7// See the LICENSE-MIT or LICENSE-APACHE file in this repository:
8// https://github.com/ankit-chaubey/ferogram
9//
10// Feel free to use, modify, and share this code.
11// Please keep this notice when redistributing.
12
13mod category;
14mod definition;
15mod flag;
16mod parameter;
17mod parameter_type;
18mod ty;
19
20pub use category::Category;
21pub use definition::Definition;
22pub use flag::Flag;
23pub use parameter::Parameter;
24pub use parameter_type::ParameterType;
25pub use ty::Type;