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
// Copyright 2021 - 2021, Rupansh Sekar and the Kilogramme (TBD) contributors
// SPDX-License-Identifier: MPL-2.0
/// Example bot command handler
mod basic;
/// Handlers related to Userbot & Telgram Info
mod info;
/// Handlers related to group management
///
/// ⚠️***WARN***⚠️: We do not explicitly check permissions. However we can easily handle permission errors.
/// handling erros is faster than explicitly checking permissions!
mod manage;
/// le epic memes
///
/// currently text-related only
mod memes;
/// Handlers related to message manipulation
mod msgdel;
/// Handlers related to saving and deleting notes
mod notes;
/// Handlers related to restricting users
///
/// ⚠️***WARN***⚠️: We do not explicitly check permissions. However we can easily handle permission errors.
/// handling erros is faster than explicitly checking permissions!
mod restrict;
/// Kangz and stuffz
mod stickers;

pub use basic::*;
pub use info::*;
pub use manage::*;
pub use memes::*;
pub use msgdel::*;
pub use notes::*;
pub use restrict::*;
pub use stickers::*;