pilot 0.0.7

the pilot manipulating telegram bot
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::borrow::Cow;

use serde::{Deserialize, Serialize};
use serde_with::skip_serializing_none;

#[skip_serializing_none]
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct DeleteMessage<'a> {
    pub chat_id: Cow<'a, str>,
    pub message_id: i32,
}