Skip to main content

ferogram_tl_parser/tl/
mod.rs

1// Copyright (c) Ankit Chaubey <ankitchaubey.dev@gmail.com>
2// SPDX-License-Identifier: MIT OR Apache-2.0
3//
4// ferogram: async Telegram MTProto client in Rust
5// https://github.com/ankit-chaubey/ferogram
6//
7//
8// If you use or modify this code, keep this notice at the top of your file
9// and include the LICENSE-MIT or LICENSE-APACHE file from this repository:
10// https://github.com/ankit-chaubey/ferogram
11
12//! Rust types representing the Abstract Syntax Tree of a TL definition.
13
14mod category;
15mod definition;
16mod flag;
17mod parameter;
18mod parameter_type;
19mod ty;
20
21pub use category::Category;
22pub use definition::Definition;
23pub use flag::Flag;
24pub use parameter::Parameter;
25pub use parameter_type::ParameterType;
26pub use ty::Type;