1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
pub use mime;

pub use self::{
    background::*,
    bot::*,
    business::*,
    callback::*,
    chat::*,
    color::*,
    contact::*,
    dice::*,
    file::*,
    forum::*,
    game::*,
    giveaway::*,
    inline_mode::*,
    link::*,
    location::*,
    media::*,
    menu::*,
    message::*,
    passport::*,
    payment::*,
    poll::*,
    primitive::*,
    reaction::*,
    reply::*,
    response::*,
    sticker::*,
    story::*,
    text::*,
    update::*,
    user::*,
    venue::*,
    web_app::*,
    webhook::*,
};

mod background;
mod bot;
mod business;
mod callback;
mod chat;
mod color;
mod contact;
mod dice;
mod file;
mod forum;
mod game;
mod giveaway;
mod inline_mode;
mod link;
mod location;
mod media;
mod menu;
mod message;
mod passport;
mod payment;
mod poll;
mod primitive;
mod reaction;
mod reply;
mod response;
mod sticker;
mod story;
mod text;
mod update;
mod user;
mod venue;
mod web_app;
mod webhook;

#[cfg(test)]
pub(in crate::types) mod tests;