1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use crate::contexts::fields::Message;
use std::sync::Arc;
pub async fn is_private(context: Arc<impl Message>) -> bool {
context.chat().kind.is_private()
}
pub async fn is_group(context: Arc<impl Message>) -> bool {
context.chat().kind.is_group()
}
pub async fn is_supergroup(context: Arc<impl Message>) -> bool {
context.chat().kind.is_supergroup()
}
pub async fn is_channel(context: Arc<impl Message>) -> bool {
context.chat().kind.is_channel()
}