1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod event_answer;
mod longpoll;
mod update;
mod user;

pub use event_answer::*;
pub use longpoll::*;
pub use update::*;
pub use user::*;

impl Default for Ctx {
    fn default() -> Self {
        Ctx {
            ts: String::from(""),
            updates: vec![],
        }
    }
}